Split public timeline into "public timeline" which is local, and
"whole known network" which is what public timeline used to be Only domain blocks with suspend severity will block PuSH subscriptions Silenced accounts should not appear in conversations unless followed
This commit is contained in:
parent
9e99b8c068
commit
4aa5ebe591
12 changed files with 148 additions and 56 deletions
|
@ -85,6 +85,7 @@ export function submitCompose() {
|
|||
dispatch(updateTimeline('home', { ...response.data }));
|
||||
|
||||
if (response.data.in_reply_to_id === null && response.data.visibility === 'public') {
|
||||
dispatch(updateTimeline('community', { ...response.data }));
|
||||
dispatch(updateTimeline('public', { ...response.data }));
|
||||
}
|
||||
}).catch(function (error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue