mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-23 08:34:13 -05:00
Fix streaming server crashing when updating filters
This commit is contained in:
parent
f57a0f89a8
commit
48ec6abaca
@ -376,7 +376,7 @@ const startWorker = (workerId) => {
|
||||
}
|
||||
|
||||
// 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`);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user