Skip to content

Commit

Permalink
fix: fixed token length
Browse files Browse the repository at this point in the history
  • Loading branch information
y9san9 committed Nov 25, 2023
1 parent 3a7d9a5 commit 52e1178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/app/meetacy/telegram/bot/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ suspend fun main(): Unit = coroutineScope {

val token = System.getenv("BOT_TOKEN")
val secretBotKey = System.getenv("SECRET_KEY").let(::SecretTelegramBotKey)
val secretBotKeySize = 256
val secretBotKeySize = 64

val bot = telegramBot(token)
val meetacy = MeetacyApi.production()
Expand Down

0 comments on commit 52e1178

Please sign in to comment.