We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e79321c commit 9376fcdCopy full SHA for 9376fcd
discord/sticker.py
@@ -74,7 +74,7 @@ def __init__(self, *, state, data):
74
self.id = int(data['id'])
75
self.name = data['name']
76
self.description = data['description']
77
- self.pack_id = int(data['pack_id'])
+ self.pack_id = int(data.get('pack_id', 0))
78
self.format = try_enum(StickerType, data['format_type'])
79
self.image = data['asset']
80
0 commit comments