1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-11-22 08:13:47 +00:00

fix "equals" of Ysername

This commit is contained in:
InsanusMokrassar 2019-02-18 12:53:01 +08:00
parent 45ba325f1b
commit 0009d211bc

View File

@ -29,9 +29,10 @@ data class Username(
}
override fun equals(other: Any?): Boolean {
return super.equals(other) || other ?.let {
super.equals("@$it")
} ?: false
return super.equals(other) || when (other) {
is String -> super.equals("@$other")
else -> false
}
}
}