diff --git a/src/router.ts b/src/router.ts index 343fa44..c352054 100644 --- a/src/router.ts +++ b/src/router.ts @@ -67,6 +67,12 @@ export class EventRouter { return; } + // Don't respond to system messages (task status changes, assignments, etc.) + if (authorType === 'system') { + this.log.debug('Ignoring system message: %s', content.slice(0, 100)); + return; + } + if (!content) { this.log.warn({ data }, 'message.new event missing content'); return;