mirror of
https://github.com/maunium/stickerpicker
synced 2025-02-19 13:45:44 +00:00
Compare commits
5 Commits
47a98ba81b
...
78ce8aabea
Author | SHA1 | Date | |
---|---|---|---|
|
78ce8aabea | ||
|
fe2d21ebce | ||
|
b468f54b39 | ||
|
74cff4e863 | ||
|
7769679ac3 |
@ -81,7 +81,11 @@ async def reupload_pack(client: TelegramClient, pack: StickerSetFull, output_dir
|
||||
reuploaded_documents[document.id] = already_uploaded[document.id]
|
||||
print(f"Skipped reuploading {document.id}")
|
||||
except KeyError:
|
||||
reuploaded_documents[document.id] = await reupload_document(client, document)
|
||||
try:
|
||||
reuploaded_documents[document.id] = await reupload_document(client, document)
|
||||
except Exception as e:
|
||||
print(f"Failed to reupload {document.id}: {e}")
|
||||
continue
|
||||
# Always ensure the body and telegram metadata is correct
|
||||
add_meta(document, reuploaded_documents[document.id], pack)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user