Fix bug where there were no media in the boosted toot and avatar opened wrong profile.
This commit is contained in:
parent
38db48c7cb
commit
b51f15ac18
1 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ public final class ViewDataUtils {
|
|||
Status visibleStatus = status.reblog == null ? status : status.reblog;
|
||||
return new StatusViewData.Builder()
|
||||
.setId(status.id)
|
||||
.setAttachments(status.attachments)
|
||||
.setAttachments(visibleStatus.attachments)
|
||||
.setAvatar(visibleStatus.account.avatar)
|
||||
.setContent(visibleStatus.content)
|
||||
.setCreatedAt(visibleStatus.createdAt)
|
||||
|
@ -37,7 +37,7 @@ public final class ViewDataUtils {
|
|||
.setSpoilerText(visibleStatus.spoilerText)
|
||||
.setRebloggedByUsername(status.reblog == null ? null : status.account.username)
|
||||
.setUserFullName(visibleStatus.account.getDisplayName())
|
||||
.setSenderId(status.account.id)
|
||||
.setSenderId(visibleStatus.account.id)
|
||||
.setRebloggingEnabled(visibleStatus.rebloggingAllowed())
|
||||
.createStatusViewData();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue