From 3e250e4a5c3f1aff3800c46f57a002657e178f4d Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 9 Dec 2023 18:05:22 +0000 Subject: [PATCH] Fix display of whether you've boosted something. I had forgotten for a moment that it's called something else at the protocol level. --- client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.py b/client.py index eaecbd9..856bd94 100644 --- a/client.py +++ b/client.py @@ -350,7 +350,7 @@ class Status: def update_fave_boost(self, data): self.favourited = data.get('favourited', False) - self.boosted = data.get('boosted', False) + self.boosted = data.get('reblogged', False) def text(self): yield text.SeparatorLine(self.datestamp, -- 2.30.2