diff --git a/disco/types/message.py b/disco/types/message.py index cede14f..80ae419 100644 --- a/disco/types/message.py +++ b/disco/types/message.py @@ -43,7 +43,7 @@ class Emoji(SlottedModel): @cached_property def custom(self): - return self.id is not None + return bool(self.id) def __eq__(self, other): if isinstance(other, Emoji):