diff --git a/streaming/index.js b/streaming/index.js index 6e75a2e80..f69064e33 100644 --- a/streaming/index.js +++ b/streaming/index.js @@ -394,7 +394,7 @@ const startWorker = (workerId) => { } // Only send local-only statuses to logged-in users - if (event === 'update' && payload.local_only && !req.accountId || !allowLocalOnly) { + if (event === 'update' && payload.local_only && !(req.accountId && allowLocalOnly)) { log.silly(req.requestId, `Message ${payload.id} filtered because it was local-only`); return; }