From 3ccbda928eed47e06283139eb0d05fa898ece19e Mon Sep 17 00:00:00 2001 From: Carl Groth Date: Thu, 30 Aug 2018 20:45:09 +0200 Subject: [PATCH] Fix PartialEmoji._as_reaction() for emojis the bot can't see If the bot has access to the emoji, you can pass anything for its name and it will work fine. The name is only required to be correct when adding a reaction where you do not have access to the emoji, all other cases ignore the name. --- discord/emoji.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/emoji.py b/discord/emoji.py index b69773227..f4b1054bd 100644 --- a/discord/emoji.py +++ b/discord/emoji.py @@ -86,7 +86,7 @@ class PartialEmoji(namedtuple('PartialEmoji', 'animated name id')): def _as_reaction(self): if self.id is None: return self.name - return ':%s:%s' % (self.name, self.id) + return '%s:%s' % (self.name, self.id) @property def url(self):