We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99ce515 commit 42828e1Copy full SHA for 42828e1
src/notify/notification-log.ts
@@ -16,8 +16,9 @@ export const checkAndLogNotification = async (params: {
16
blockNumber: number
17
}): Promise<boolean> => {
18
const id = `${params.recordType}:${params.recordId}`
19
- const existing = await params.ctx.store.get(NotificationLog, id)
20
- if (existing) return true
+ // WARNING: Disabled this because we won't be doing any reprocessing for now.
+ // const existing = await params.ctx.store.get(NotificationLog, id)
21
+ // if (existing) return true
22
23
await params.ctx.store.upsert(
24
new NotificationLog({
0 commit comments