Add support for voice channel parties #33

Closed
wasi-master wants to merge 277 commits from master into 2.0
82 changed files with 2664 additions and 2159 deletions
Showing only changes of commit 9376fcd69d - Show all commits

View File

@ -74,7 +74,7 @@ class Sticker(Hashable):
self.id = int(data['id'])
self.name = data['name']
self.description = data['description']
self.pack_id = int(data['pack_id'])
self.pack_id = int(data.get('pack_id', 0))
self.format = try_enum(StickerType, data['format_type'])
self.image = data['asset']