diff --git a/modules/questions.py b/modules/questions.py index bc04760..8996091 100644 --- a/modules/questions.py +++ b/modules/questions.py @@ -415,7 +415,7 @@ async def autopost_not_started(self) -> None: def is_time_for_autopost_wip(self) -> bool: now = datetime.now() return ( - now.weekday() in (0, 2, 4) # Monday, Wednesday, or Friday + now.weekday() in (0, 4) # Monday or Friday and 8 <= now.hour <= 12 # between 08:00 and 12:00 and self.last_wip_autopost_attempt_date != now.date() # Wasn't posted today yet