We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8b36dc commit 81ad61bCopy full SHA for 81ad61b
processors/visualisation/download-telegram-images.py
@@ -173,7 +173,7 @@ async def get_images(self):
173
if message["chat"] not in messages_with_photos:
174
messages_with_photos[message["chat"]] = []
175
176
- messages_with_photos[message["chat"]].append(int(message["id"]))
+ messages_with_photos[message["chat"]].append(int(message["id"].split("-")[-1]))
177
total_media += 1
178
179
if amount and total_media >= amount:
0 commit comments