Fix return value of send_file(album) of the same media

This commit is contained in:
Lonami Exo
2019-11-10 14:56:28 +01:00
parent 57dd0827f4
commit 6817e19923
2 changed files with 7 additions and 14 deletions

View File

@@ -164,7 +164,7 @@ class MessageParseMethods:
mapping = sched_to_message
opposite = id_to_message # scheduled may be treated as normal, though
random_id = request if isinstance(request, int) else request.random_id
random_id = request if isinstance(request, (int, list)) else request.random_id
if not utils.is_list_like(random_id):
msg = mapping.get(random_to_id.get(random_id))
if not msg: