Skip to content

Commit

Permalink
bug(notifier): fix bug with channel enabled validation
Browse files Browse the repository at this point in the history
  • Loading branch information
e11sy committed Feb 1, 2025
1 parent 50f36ba commit 5b2979b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workers/notifier/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export default class NotifierWorker extends Worker {
* If channel is disabled by user, do not add event to it
*/
if (!options.isEnabled) {
return;
continue;
}

const channelKey: ChannelKey = [projectId, rule._id.toString(), name];
Expand Down

0 comments on commit 5b2979b

Please sign in to comment.