fix in javaLocale extension

This commit is contained in:
InsanusMokrassar 2020-01-23 19:14:33 +06:00
parent a8ae0a296a
commit 46573512a2
2 changed files with 2 additions and 1 deletions

View File

@ -30,6 +30,7 @@
* `CommonUser` was added as representation of default `User`
* `Bot` was added as representation of bot user
* `GetMe` now return `Bot` object
* Now extension `javaLocale` is extension for `CommonUser`
## 0.22.0

View File

@ -2,6 +2,6 @@ package com.github.insanusmokrassar.TelegramBotAPI.types
import java.util.*
fun User.javaLocale(): Locale? = languageCode ?.let {
fun CommonUser.javaLocale(): Locale? = languageCode ?.let {
Locale.forLanguageTag(it)
}