Skip to content

Commit

Permalink
Fixed author name / account name on boosted toots
Browse files Browse the repository at this point in the history
  • Loading branch information
danschwarz committed Jan 23, 2024
1 parent eeb9200 commit d1beec7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions toot/tui/timeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,8 @@ def author_header(self, reblogged_by):
account_color = ("highlight" if self.status.original.author.account in
self.timeline.tui.followed_accounts else "account")

atxt = urwid.Pile([("pack", urwid.Text(("bold", self.status.author.display_name))),
("pack", urwid.Text((account_color, self.status.author.account)))])
atxt = urwid.Pile([("pack", urwid.Text(("bold", self.status.original.author.display_name))),
("pack", urwid.Text((account_color, self.status.original.author.account)))])

columns = urwid.Columns([aimg, ("weight", 9999, atxt)], dividechars=1, min_width=5)
return columns
Expand Down

0 comments on commit d1beec7

Please sign in to comment.