Skip to content
Snippets Groups Projects
Unverified Commit 39abec4d authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix public timelines not instantly updating on compose (#9050)

Fix #9034
parent ad510db3
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,9 @@ export function submitCompose(routerHistory) {
routerHistory.push('/timelines/direct');
} else if (response.data.visibility !== 'direct') {
insertIfOnline('home');
} else if (response.data.in_reply_to_id === null && response.data.visibility === 'public') {
}
if (response.data.in_reply_to_id === null && response.data.visibility === 'public') {
insertIfOnline('community');
insertIfOnline('public');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment