1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-06-26 03:28:10 +00:00

fix pollQuestionTextLength name

This commit is contained in:
InsanusMokrassar 2019-04-16 19:22:18 +08:00
parent 527ee306fc
commit 6b045549f9
2 changed files with 3 additions and 3 deletions

View File

@ -25,8 +25,8 @@ data class SendPoll(
ReplyingMarkupSendMessageRequest<RawMessage> {
init {
if (question.length !in pollQuectionTextLength) {
throw IllegalArgumentException("The length of questions for polls must be in $pollQuectionTextLength range, but was ${question.length}")
if (question.length !in pollQuestionTextLength) {
throw IllegalArgumentException("The length of questions for polls must be in $pollQuestionTextLength range, but was ${question.length}")
}
options.forEach {
if (it.length !in pollOptionTextLength) {

View File

@ -32,7 +32,7 @@ val invoiceDescriptionLimit = 1 until 256
val invoicePayloadBytesLimit = 1 until 128
val pollOptionTextLength = 1 .. 100
val pollQuectionTextLength = 1 until 256
val pollQuestionTextLength = 1 until 256
val pollOptionsLimit = 2 .. 10
val livePeriodLimit = 60 .. 86400