From 2aadcc2360c1112a65f70551e8673b21ea592fb9 Mon Sep 17 00:00:00 2001 From: George Tsatsis Date: Mon, 30 Mar 2020 22:49:58 +0300 Subject: [PATCH] When server has no features, it would not submit changes. --- litecord/storage.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/litecord/storage.py b/litecord/storage.py index e91bc58..5ab71b6 100644 --- a/litecord/storage.py +++ b/litecord/storage.py @@ -1310,5 +1310,6 @@ class Storage: """, guild_id, ) - + if features is None: + return False return feature.upper() in features