diff --git a/src/appservice/AppService.ts b/src/appservice/AppService.ts index 5b861efb..c0bc8ca7 100644 --- a/src/appservice/AppService.ts +++ b/src/appservice/AppService.ts @@ -83,8 +83,12 @@ export class MjolnirAppService { // It also allows us to combine constructor/initialize logic // to make the code base much simpler. A small hack to pay for an overall less hacky code base. controller: { - onUserQuery: () => { throw new Error("Mjolnir uninitialized") }, - onEvent: () => { throw new Error("Mjolnir uninitialized") }, + onUserQuery: () => { + throw new Error("Mjolnir uninitialized") + }, + onEvent: () => { + throw new Error("Mjolnir uninitialized") + }, }, suppressEcho: false, disableStores: true,