diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/reddit.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/cogs/reddit.py b/bot/cogs/reddit.py index 7cb340145..982c0cbe6 100644 --- a/bot/cogs/reddit.py +++ b/bot/cogs/reddit.py @@ -43,7 +43,7 @@ class Reddit(Cog):      def cog_unload(self) -> None:          """Stop the loop task and revoke the access token when the cog is unloaded."""          self.auto_poster_loop.cancel() -        if self.access_token.expires_at < datetime.utcnow(): +        if self.access_token and self.access_token.expires_at < datetime.utcnow():              self.revoke_access_token()      async def init_reddit_ready(self) -> None: | 
