summaryrefslogtreecommitdiff
path: root/source/libs/on-new-comments.ts
diff options
context:
space:
mode:
authorGravatar Federico Brigante <github@bfred.it> 2019-08-31 01:26:28 +0700
committerGravatar GitHub <noreply@github.com> 2019-08-31 01:26:28 +0700
commit8d0393542bd712d7bb7f93874118dedd07b62c7b (patch)
tree0a139195466ba76bf5abdd6cbb979e55dcf3322a /source/libs/on-new-comments.ts
parent0ca864af6da9cac9f503e4abd0c58b60fbe1abc6 (diff)
downloadrefined-github-22fadd2fa6fb5bb4dac88ca1fc81a69c1dc8ec97.tar.gz
refined-github-22fadd2fa6fb5bb4dac88ca1fc81a69c1dc8ec97.tar.zst
refined-github-22fadd2fa6fb5bb4dac88ca1fc81a69c1dc8ec97.zip
Update dependencies and lint (#2391)19.8.31
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});