The result of current version ofgetStickerSet don't have is_animated and is_video field.
Thus, the v0.3.3 version are failed to import any Telegram stickers due to the deserialisation of result failed (#46) .
//Below is the current version of API result
{
"ok": true,
"result": {
"name": "GumLoveIs",
"title": "LIHKG Lomore",
"thumbnail": {},
"thumb": {},
"sticker_type": "regular",
"contains_masks": false,
"stickers": []
}
}
The result of current version of
getStickerSet
don't haveis_animated
andis_video
field. Thus, the v0.3.3 version are failed to import any Telegram stickers due to the deserialisation ofresult
failed (#46) .