From: Simon Tatham Date: Sat, 9 Dec 2023 18:05:22 +0000 (+0000) Subject: Fix display of whether you've boosted something. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=3e250e4a5c3f1aff3800c46f57a002657e178f4d;p=mastodonochrome.git Fix display of whether you've boosted something. I had forgotten for a moment that it's called something else at the protocol level. --- 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,