Skip to content

Commit

Permalink
fix - album order
Browse files Browse the repository at this point in the history
  • Loading branch information
jjpaulo2 committed Oct 3, 2024
1 parent be3cab7 commit 17358fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion function/telegram/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self, message: Message):

@property
def _album_images(self) -> list[str]:
return self.message.images[1 : TELEGRAM_MAX_ALBUM_QUANTITY + 1 : -1]
return self.message.images[1 : TELEGRAM_MAX_ALBUM_QUANTITY + 1][::-1]

@property
def _emoji(self) -> str:
Expand Down

0 comments on commit 17358fb

Please sign in to comment.