mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2025-09-02 22:59:48 +00:00
fixes in parseCommandsWithParams
This commit is contained in:
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
|
|||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-bin.zip
|
||||||
|
@@ -18,8 +18,11 @@ fun List<TextSource>.parseCommandsWithParams(
|
|||||||
var currentBotCommandSource: BotCommandTextSource? = null
|
var currentBotCommandSource: BotCommandTextSource? = null
|
||||||
var currentArgs = ""
|
var currentArgs = ""
|
||||||
fun includeCurrent() = currentBotCommandSource ?.let {
|
fun includeCurrent() = currentBotCommandSource ?.let {
|
||||||
result[it.command] = currentArgs.split(argsSeparator).toTypedArray()
|
currentArgs = currentArgs.trim()
|
||||||
currentArgs = ""
|
if (currentArgs.isNotEmpty()) {
|
||||||
|
result[it.command] = currentArgs.split(argsSeparator).toTypedArray()
|
||||||
|
currentArgs = ""
|
||||||
|
}
|
||||||
}
|
}
|
||||||
for (textSource in this) {
|
for (textSource in this) {
|
||||||
if (textSource is BotCommandTextSource) {
|
if (textSource is BotCommandTextSource) {
|
||||||
|
Reference in New Issue
Block a user