Fix server update problems (string where supposed to be int)

This commit is contained in:
George Tsatsis 2020-03-30 20:33:08 +03:00
parent a4148bd616
commit 83721d4525
No known key found for this signature in database
GPG Key ID: 71F5AD643ABD99A4
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@ async def _update_guild(guild_id):
SET {field} = $1
WHERE id = $2
""",
j[field],
int(j[field]),
guild_id,
)