build fixes

This commit is contained in:
InsanusMokrassar 2024-01-08 13:21:41 +06:00
parent 281243c7e5
commit 753d686fab
3 changed files with 5 additions and 4 deletions

View File

@ -14,6 +14,7 @@ import dev.inmo.tgbotapi.extensions.utils.ifFromChannelGroupContentMessage
import dev.inmo.tgbotapi.types.ChatId
import dev.inmo.tgbotapi.types.IdChatIdentifier
import dev.inmo.tgbotapi.types.PollIdentifier
import dev.inmo.tgbotapi.types.ReplyParameters
import dev.inmo.tgbotapi.types.chat.*
import dev.inmo.tgbotapi.types.chat.GroupChat
import dev.inmo.tgbotapi.types.chat.PrivateChat
@ -54,7 +55,7 @@ suspend fun main(vararg args: String) {
it.toString()
},
isAnonymous = true,
replyToMessageId = it.messageId
replyParameters = ReplyParameters(it)
)
pollToChatMutex.withLock {
pollToChat[sentPoll.content.poll.id] = sentPoll.chat.id
@ -69,7 +70,7 @@ suspend fun main(vararg args: String) {
it.toString()
},
isAnonymous = false,
replyToMessageId = it.messageId
replyParameters = ReplyParameters(it)
)
pollToChatMutex.withLock {
pollToChat[sentPoll.content.poll.id] = sentPoll.chat.id

View File

@ -26,6 +26,6 @@ allprojects {
}
}
maven { url "https://git.inmo.dev/api/packages/InsanusMokrassar/maven" }
maven { url "https://nexus.inmo.dev/repository/maven-releases/" }
}
}

View File

@ -1,7 +1,7 @@
kotlin.code.style=official
org.gradle.parallel=true
# Due to parallel compilation project require next amount of memory on full build
org.gradle.jvmargs=-Xmx2g
org.gradle.jvmargs=-Xmx2344m
kotlin_version=1.9.22