From cbbd31cc9fccbef85ef65e56b509c1944e2eb8dc Mon Sep 17 00:00:00 2001 From: Nadir Chowdhury Date: Thu, 29 Apr 2021 07:16:55 +0100 Subject: [PATCH] fix AttributeError in Sticker.image --- discord/sticker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/sticker.py b/discord/sticker.py index 8a1e4518d..c93ac7630 100644 --- a/discord/sticker.py +++ b/discord/sticker.py @@ -107,4 +107,4 @@ class Sticker(Hashable): if self.format is StickerType.lottie: return None - return Asset._from_sticker_url(self._state, self.id, self._image) + return Asset._from_sticker(self._state, self.id, self._image)