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