forgot to revert this change meant for debugging add_safe_bytes()

This commit is contained in:
Io Mintz 2019-10-10 00:32:42 +00:00
parent f6d9cea805
commit 2475d852a9
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@ class Emotes(commands.Cog):
static = utils.image.mime_type_for_image(image_data) != 'image/gif'
converted = False
if static and counts[False] >= 1: # context.guild.emoji_limit:
if static and counts[False] >= context.guild.emoji_limit:
image_data = await utils.image.convert_to_gif_in_subprocess(image_data)
converted = True