Changed action cards logic. x17
All checks were successful
gitea/JBunker/pipeline/head This commit looks good

This commit is contained in:
Michael Wain 2025-04-15 04:21:41 +03:00
parent adccdf5004
commit 7de6f88416
2 changed files with 2 additions and 3 deletions

View File

@ -78,12 +78,12 @@
<dependency> <dependency>
<groupId>org.telegram</groupId> <groupId>org.telegram</groupId>
<artifactId>telegrambots-spring-boot-starter</artifactId> <artifactId>telegrambots-spring-boot-starter</artifactId>
<version>6.7.0</version> <version>6.9.7.1</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.telegram</groupId> <groupId>org.telegram</groupId>
<artifactId>telegrambots-abilities</artifactId> <artifactId>telegrambots-abilities</artifactId>
<version>6.7.0</version> <version>6.9.7.1</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.commons</groupId> <groupId>org.apache.commons</groupId>

View File

@ -21,7 +21,6 @@ public class Initializer {
try { try {
TelegramBotsApi telegramBotsApi = new TelegramBotsApi(DefaultBotSession.class); TelegramBotsApi telegramBotsApi = new TelegramBotsApi(DefaultBotSession.class);
telegramBotsApi.registerBot(bot); telegramBotsApi.registerBot(bot);
log.info("TELEGRAMBOTSAPI REGISTERED");
} catch (Exception e) { } catch (Exception e) {
log.error(e.getMessage()); log.error(e.getMessage());
} }