Only stream local-only toots to logged-in users
This commit is contained in:
parent
f84897c7d7
commit
a100f05687
1 changed files with 6 additions and 0 deletions
|
@ -334,6 +334,12 @@ const startWorker = (workerId) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Only send local-only statuses to logged-in users
|
||||||
|
if (payload.local_only && !req.accountId) {
|
||||||
|
log.silly(req.requestId, `Message ${payload.id} filtered because it was local-only`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Only messages that may require filtering are statuses, since notifications
|
// Only messages that may require filtering are statuses, since notifications
|
||||||
// are already personalized and deletes do not matter
|
// are already personalized and deletes do not matter
|
||||||
if (!needsFiltering || event !== 'update') {
|
if (!needsFiltering || event !== 'update') {
|
||||||
|
|
Loading…
Reference in a new issue