3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +00:00

Fix !update and auto-updated mute cases

This commit is contained in:
Dragory 2018-12-22 14:05:06 +02:00
parent 1aaa4205e9
commit e787312a1a

View file

@ -36,8 +36,8 @@ export class CasesPlugin extends ZeppelinPlugin {
);
});
this.actions.register("createCaseNote", args => {
return this.createCaseNote(args.case || args.caseId, args.modId, args.note, args.automatic, args.postInCaseLog);
this.actions.register("createCaseNote", (caseOrCaseId, args) => {
return this.createCaseNote(caseOrCaseId, args.modId, args.note, args.automatic, args.postInCaseLog);
});
this.actions.register("postCase", async args => {