fix(twrmd): Fix luserid clobbering userid.

This commit is contained in:
2025-06-25 19:45:55 +10:00
parent 0eaa73b32a
commit f7156a42ce

View File

@@ -298,8 +298,8 @@ class ReminderCog(LionCog):
timezone = None
discords = await profile.discord_accounts()
if discords:
userid = discords[0].userid
luser = await self.bot.core.lions.fetch_user(userid)
luserid = discords[0].userid
luser = await self.bot.core.lions.fetch_user(luserid)
if luser:
timezone = luser.config.timezone.value
if not timezone: