mirror of https://gitlab.com/litecord/litecord.git
storage: fix bug giving str to timestamp_
This commit is contained in:
parent
ee29668468
commit
e6cda1fa6d
|
|
@ -483,7 +483,7 @@ class Storage:
|
|||
WHERE guild_id = $1 AND user_id = $2
|
||||
""", guild_id, user_id)
|
||||
|
||||
res['joined_at'] = timestamp_(joined_at.isoformat())
|
||||
res['joined_at'] = timestamp_(joined_at)
|
||||
|
||||
members = await self.get_member_data(guild_id)
|
||||
channels = await self.get_channel_data(guild_id)
|
||||
|
|
|
|||
Loading…
Reference in New Issue