fix: Pass empty parameter object for twitter actions

This commit is contained in:
Faruk AYDIN
2021-11-24 00:24:36 +01:00
committed by Ömer Faruk Aydın
parent f0e25ed9f3
commit 58ba78e52b

View File

@@ -10,6 +10,6 @@ export default class Twitter {
constructor(connectionData: any) {
this.authenticationClient = new Authentication(connectionData);
this.triggers = new Triggers(connectionData);
this.actions = new Actions(connectionData);
this.actions = new Actions(connectionData, {});
}
}