When server has no features, it would not submit changes.

This commit is contained in:
George Tsatsis 2020-03-30 22:49:58 +03:00
parent 3c9801e99a
commit 2aadcc2360
No known key found for this signature in database
GPG Key ID: 71F5AD643ABD99A4
1 changed files with 2 additions and 1 deletions

View File

@ -1310,5 +1310,6 @@ class Storage:
""", """,
guild_id, guild_id,
) )
if features is None:
return False
return feature.upper() in features return feature.upper() in features