1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2025-09-06 00:29:39 +00:00

fix in javaLocale extension

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

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)
}