diff options
author | Thibaut Girka <thib@sitedethib.com> | 2020-07-07 20:30:40 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2020-07-07 20:31:45 +0200 |
commit | c41da2e96294dc24ba7e039cd3151916fff664db (patch) | |
tree | 63a4f07be711709c59f4da7bd8a57a41baca455d /streaming/index.js | |
parent | 4acb7efb4ba43ec7706e4d8edfe30097b541c909 (diff) |
Fix streaming server only working for streams allowing local-only toots
Diffstat (limited to 'streaming/index.js')
-rw-r--r-- | streaming/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |