Skip to content

Commit

Permalink
Fix sending albums failing on invalid cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Lonami committed Jan 17, 2018
1 parent bfe9378 commit 428abeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion telethon/telegram_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,7 @@ def _send_album(self, entity, files, caption='',
# Need to upload the media first
media = [
self(UploadMediaRequest(entity, InputMediaUploadedPhoto(
self.upload_file(file),
self.upload_file(file, allow_cache=allow_cache),
caption=caption
)))
for file in files
Expand Down

0 comments on commit 428abeb

Please sign in to comment.