Correctly fixed get_custom_emoji_stickers method

This commit is contained in:
ENCRYPTED 2022-09-18 16:06:33 +03:00 committed by GitHub
parent d47db33fe1
commit f4d229cdd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3058,6 +3058,7 @@ class Bot(BaseBot, DataMixin, ContextInstanceMixin):
:return: Returns an Array of Sticker objects.
:rtype: :obj:`typing.List[types.Sticker]`
"""
custom_emoji_ids = prepare_arg(custom_emoji_ids)
payload = generate_payload(**locals())
result = await self.request(api.Methods.GET_CUSTOM_EMOJI_STICKERS, payload)