From 1c59facd2b88d8babe311eda2a530a89a93a86fb Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Fri, 3 Feb 2023 14:59:40 +0100 Subject: [PATCH] Show account of original toot instead of reblog --- toot/tui/timeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toot/tui/timeline.py b/toot/tui/timeline.py index d91fe3a..9059f5e 100644 --- a/toot/tui/timeline.py +++ b/toot/tui/timeline.py @@ -172,7 +172,7 @@ class Timeline(urwid.Columns): self._emit("next") if key in ("a", "A"): - self._emit("account", status.data['account']['id']) + self._emit("account", status.original.data['account']['id']) return if key in ("b", "B"):