mirror of https://gitlab.com/litecord/litecord.git
Fix server update problems (string where supposed to be int)
This commit is contained in:
parent
a4148bd616
commit
83721d4525
|
|
@ -346,7 +346,7 @@ async def _update_guild(guild_id):
|
|||
SET {field} = $1
|
||||
WHERE id = $2
|
||||
""",
|
||||
j[field],
|
||||
int(j[field]),
|
||||
guild_id,
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue