diff options
author | Vitaly Takmazov | 2022-07-01 00:13:59 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2022-07-01 00:13:59 +0300 |
commit | 501828529cc4fefb9fdca0ebde52c320990541b2 (patch) | |
tree | bf325c87237bba4e78abdcb5c9b7ca89382b0ec5 /src/main/java/com/juick/TelegramBotManager.java | |
parent | 0fcaa21cb79432ead14b32cca2acc8ea5b8b4457 (diff) |
Bump `java-telegram-bot-api` to 6.1.0
* make compatible with API changes
Diffstat (limited to 'src/main/java/com/juick/TelegramBotManager.java')
-rw-r--r-- | src/main/java/com/juick/TelegramBotManager.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/juick/TelegramBotManager.java b/src/main/java/com/juick/TelegramBotManager.java index eb8c2b83..20f31b1b 100644 --- a/src/main/java/com/juick/TelegramBotManager.java +++ b/src/main/java/com/juick/TelegramBotManager.java @@ -165,7 +165,7 @@ public class TelegramBotManager implements NotificationListener { if (!user_from.isAnonymous()) { URI attachment = URI.create(StringUtils.EMPTY); if (message.photo() != null) { - String fileId = Arrays.stream(message.photo()).max(Comparator.comparingInt(PhotoSize::fileSize)) + String fileId = Arrays.stream(message.photo()).max(Comparator.comparingLong(PhotoSize::fileSize)) .orElse(new PhotoSize()).fileId(); if (StringUtils.isNotEmpty(fileId)) { GetFile request = new GetFile(fileId); |