merge-requests/30/head
Bob Mottram 2024-04-26 13:19:53 +01:00
parent 58fb055b27
commit 3610dcbda8
2 changed files with 9 additions and 6 deletions

View File

@ -3691,7 +3691,9 @@ def daemon_http_get(self) -> None:
self.server.dogwhistles, self.server.dogwhistles,
self.server.min_images_for_accounts, self.server.min_images_for_accounts,
self.server.buy_sites, self.server.buy_sites,
self.server.auto_cw_cache) self.server.auto_cw_cache,
self.server.account_timezone,
self.server.bold_reading)
self.server.getreq_busy = False self.server.getreq_busy = False
return return

View File

@ -44,7 +44,9 @@ def reaction_picker2(self, calling_domain: str, path: str,
dogwhistles: {}, dogwhistles: {},
min_images_for_accounts: [], min_images_for_accounts: [],
buy_sites: [], buy_sites: [],
auto_cw_cache: {}) -> None: auto_cw_cache: {},
account_timezone: {},
bold_reading_nicknames: {}) -> None:
"""Press the emoji reaction picker icon at the bottom of the post """Press the emoji reaction picker icon at the bottom of the post
""" """
page_number = 1 page_number = 1
@ -111,12 +113,11 @@ def reaction_picker2(self, calling_domain: str, path: str,
return return
timezone = None timezone = None
if self.server.account_timezone.get(self.post_to_nickname): if account_timezone.get(self.post_to_nickname):
timezone = \ timezone = account_timezone.get(self.post_to_nickname)
self.server.account_timezone.get(self.post_to_nickname)
bold_reading = False bold_reading = False
if self.server.bold_reading.get(self.post_to_nickname): if bold_reading_nicknames.get(self.post_to_nickname):
bold_reading = True bold_reading = True
msg = \ msg = \