Skip to content

Commit

Permalink
Fix unable to upload telegram stickers
Browse files Browse the repository at this point in the history
  • Loading branch information
laggykiller committed Dec 3, 2024
1 parent 0dcd9c1 commit 799a626
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sticker_convert/uploaders/upload_telegram.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ async def upload_pack(
)

if sticker_set is None:
if count < 50 and (
if count < 50 and count != len(stickers) - 1 and (
sticker_format_prev is None
or sticker_format_prev == sticker_format
):
Expand Down

0 comments on commit 799a626

Please sign in to comment.