Fix streaming server crashing when updating filters

master
Thibaut Girka 5 years ago committed by ThibG
parent f57a0f89a8
commit 48ec6abaca
  1. 2
      streaming/index.js

@ -376,7 +376,7 @@ const startWorker = (workerId) => {
} }
// Only send local-only statuses to logged-in users // Only send local-only statuses to logged-in users
if (payload.local_only && !req.accountId) { if (event === 'update' && payload.local_only && !req.accountId) {
log.silly(req.requestId, `Message ${payload.id} filtered because it was local-only`); log.silly(req.requestId, `Message ${payload.id} filtered because it was local-only`);
return; return;
} }

Loading…
Cancel
Save