fix getMyCommands overloads conflict when no arguments provided

This commit is contained in:
Kirill Romanov 2021-10-22 21:34:04 +03:00
parent 064b6222e6
commit a5cc80a1eb
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
## 0.36.1
* `API`:
* Fix `getMyCommands` overloads conflict when no arguments provided
* `Utils`:
* `buildEntities` DSL now have parameter `separator` to specify `TextSource` that will be inserted between other sources

View File

@ -13,5 +13,5 @@ suspend fun TelegramBot.getMyCommands(
suspend fun TelegramBot.getMyCommands(
scope: BotCommandScope = BotCommandScopeDefault,
languageCode: String? = null
languageCode: String?
) = getMyCommands(scope, languageCode ?.let(::IetfLanguageCode))