Fix retweeted by id on user page

This commit is contained in:
r 2020-10-19 10:01:59 +00:00
parent fdd9b8fd2b
commit 8fd0322439
1 changed files with 6 additions and 0 deletions

View File

@ -560,6 +560,12 @@ func (svc *service) ServeUserPage(c *model.Client, id string, pageType string,
return errInvalidArgument
}
for i := range statuses {
if statuses[i].Reblog != nil {
statuses[i].Reblog.RetweetedByID = statuses[i].ID
}
}
commonData := svc.getCommonData(c, user.DisplayName)
data := &renderer.UserData{
User: user,