Conflicts:
- `app/javascript/mastodon/actions/compose.js`:
Not a “real” conflict, but change too close to a change we made to
fix the vanilla WebUI locally pushing authored local-only toots in the
public TL view.
if (response.data.in_reply_to_id === null && response.data.visibility === 'public') {
insertIfOnline('community');
- insertIfOnline('public');
+ if (!response.data.local_only) {
+ insertIfOnline('public');
+ }
+ insertIfOnline(`account:${response.data.account.id}`);
}
}).catch(function (error) {
dispatch(submitComposeFail(error));