:warning: Restart of all Mastodon processes, especially the Streaming API
There was a conflict during the merge inside the streaming/index.js, which was related to the following snippet:
// 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;
}
I've placed it at the same spot where it was previously, so everything should work as before. However, I still need to test those changes, which is what I'll be doing after submitting this PR as draft.
Checked the changes against our instance, everything is working as expected as logged-in user. Haven't checked the public timelines where the above snippet would be relevant, as we are using AUTHORIZED_FETCH and I would like to keep it enabled. ^^
If the base branch is not correct, feel free to change it.
Everything is already deployed on queer.group and working fine there.
This includes all changes made in https://github.com/mastodon/mastodon/releases/tag/v4.0.7 and https://github.com/mastodon/mastodon/releases/tag/v4.0.8 and therefore requires:
:warning: Restart of all Mastodon processes, especially the Streaming API
There was a conflict during the merge inside the
streaming/index.js
, which was related to the following snippet:I've placed it at the same spot where it was previously, so everything should work as before.
However, I still need to test those changes, which is what I'll be doing after submitting this PR as draft.Checked the changes against our instance, everything is working as expected as logged-in user. Haven't checked the public timelines where the above snippet would be relevant, as we are using
AUTHORIZED_FETCH
and I would like to keep it enabled. ^^If the base branch is not correct, feel free to change it.
Everything is already deployed on queer.group and working fine there.