aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docker/netiquette/index.mjs2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/netiquette/index.mjs b/docker/netiquette/index.mjs
index 6aca6e4..41b27e3 100644
--- a/docker/netiquette/index.mjs
+++ b/docker/netiquette/index.mjs
@@ -26,7 +26,7 @@ function* notifications_aggregator(injectors) {
yield async (tag_list) => {
states[idx] = tag_list
const merged = states.reduce((acc, tag) => [...acc, ...tag], [])
- await Promise.all(injectors.map(notify => notify(merged)))
+ await Promise.all(injectors.map(notify => notify(merged)))
}
}
}