Fix copied messages reporting "None" in case of empty captions

This commit is contained in:
Dan 2020-12-07 17:22:10 +01:00
parent 76b9f97681
commit d2023c39ae

View File

@ -2920,7 +2920,7 @@ class Message(Object, Update):
return await send_media(file_id=file_id)
else:
if caption is None:
caption = self.caption
caption = self.caption or ""
caption_entities = self.caption_entities
return await send_media(