From 83721d45258291abc22753e8f10cc9163a22e52b Mon Sep 17 00:00:00 2001 From: George Tsatsis Date: Mon, 30 Mar 2020 20:33:08 +0300 Subject: [PATCH] Fix server update problems (string where supposed to be int) --- litecord/blueprints/guilds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litecord/blueprints/guilds.py b/litecord/blueprints/guilds.py index 546fe01..ec331c6 100644 --- a/litecord/blueprints/guilds.py +++ b/litecord/blueprints/guilds.py @@ -346,7 +346,7 @@ async def _update_guild(guild_id): SET {field} = $1 WHERE id = $2 """, - j[field], + int(j[field]), guild_id, )