diff --git a/backend/src/plugins/Automod.ts b/backend/src/plugins/Automod.ts index cddc2257..e8982687 100644 --- a/backend/src/plugins/Automod.ts +++ b/backend/src/plugins/Automod.ts @@ -1311,6 +1311,7 @@ export class AutomodPlugin extends ZeppelinPlugin { const matchResult = await this.matchRuleToMessage(rule, msg); if (matchResult) { await this.applyActionsOnMatch(rule, matchResult); + break; // Don't apply multiple rules to the same message } } });