We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c29cf1c commit a6a62ccCopy full SHA for a6a62cc
1 file changed
workers/grouper/src/index.ts
@@ -237,8 +237,7 @@ export default class GrouperWorker extends Worker {
237
if (process.env.IS_NOTIFIER_WORKER_ENABLED) {
238
const isIgnored = isFirstOccurrence
239
? false
240
- : !!(existedEvent as GroupedEventDBScheme & { marks?: { ignored?: boolean } })?.marks
241
- ?.ignored;
+ : !!(existedEvent as GroupedEventDBScheme & { marks?: { ignored?: boolean } })?.marks?.ignored;
242
243
if (!isIgnored) {
244
await this.addTask(WorkerNames.NOTIFIER, {
0 commit comments