mirror of
https://git.freesoftwareextremist.com/bloat
synced 2024-11-09 16:14:11 +00:00
Fix retweeted by id on user page
This commit is contained in:
parent
fdd9b8fd2b
commit
8fd0322439
1 changed files with 6 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue