Fix _iter_ids not expecting InputChannel

This commit is contained in:
Lonami Exo 2018-07-24 18:20:34 +02:00
parent 7778b665db
commit 6c51c35ccf

View File

@ -751,7 +751,7 @@ class MessageMethods(UploadMethods, ButtonMethods, MessageParseMethods):
total[0] = len(ids)
from_id = None # By default, no need to validate from_id
if isinstance(entity, types.InputPeerChannel):
if isinstance(entity, (types.InputChannel, types.InputPeerChannel)):
r = await self(functions.channels.GetMessagesRequest(entity, ids))
else:
r = await self(functions.messages.GetMessagesRequest(ids))