summaryrefslogtreecommitdiff
path: root/source/libs/on-new-comments.ts
diff options
context:
space:
mode:
Diffstat (limited to 'source/libs/on-new-comments.ts')
-rw-r--r--source/libs/on-new-comments.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/libs/on-new-comments.ts b/source/libs/on-new-comments.ts
index 43fd224a..2ddc5aae 100644
--- a/source/libs/on-new-comments.ts
+++ b/source/libs/on-new-comments.ts
@@ -7,6 +7,7 @@ const observed = new WeakSet();
const run = debounce(() => {
// Safely run all callbacks
+ // eslint-disable-next-line @typescript-eslint/require-await
handlers.forEach(async cb => cb());
}, {wait: 200});