This commit is contained in:
Henry Jameson 2026-06-22 20:54:34 +03:00
commit c697041dfc
4 changed files with 11 additions and 13 deletions

View file

@ -37,12 +37,13 @@ const postStatus = ({
preview,
idempotencyKey,
}).then(({ data }) => {
if (!preview) store.dispatch('addNewStatuses', {
statuses: [data],
timeline: 'friends',
showImmediately: true,
noIdUpdate: true, // To prevent missing notices on next pull.
})
if (!preview)
store.dispatch('addNewStatuses', {
statuses: [data],
timeline: 'friends',
showImmediately: true,
noIdUpdate: true, // To prevent missing notices on next pull.
})
return data
})