fix boost button not updating when boosting (#4048)
This commit is contained in:
parent
0fad9729ef
commit
9412ffba0f
2 changed files with 9 additions and 1 deletions
|
|
@ -51,7 +51,13 @@ class TimelineCases @Inject constructor(
|
|||
} else {
|
||||
mastodonApi.unreblogStatus(statusId)
|
||||
}.onSuccess { status ->
|
||||
eventHub.dispatch(StatusChangedEvent(status))
|
||||
if (status.reblog != null) {
|
||||
// when reblogging, the Mastodon Api does not return the reblogged status directly
|
||||
// but the newly created status with reblog set to the reblogged status
|
||||
eventHub.dispatch(StatusChangedEvent(status.reblog))
|
||||
} else {
|
||||
eventHub.dispatch(StatusChangedEvent(status))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue