Skip to content

Commit 2e983f1

Browse files
committed
ignore clients sending queueevent command
1 parent d4a5c03 commit 2e983f1

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/Messages/Message.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1144,6 +1144,10 @@ export class Message {
11441144
Logger.instanse.error(new Error("Received message with no command"), null, { cls: "Message", func: "UnknownCommand" });
11451145
return;
11461146
}
1147+
if (this.command == "queueevent") {
1148+
// ignore
1149+
return;
1150+
}
11471151
this.data = "{\"message\": \"Unknown command " + this.command + "\"}";
11481152
Logger.instanse.error(`UnknownCommand ${this.command}`, null, { cls: "Message", func: "UnknownCommand" });
11491153
this.Reply("error");

0 commit comments

Comments
 (0)