ignore case

This commit is contained in:
adrienmalin 2018-12-18 00:57:01 +01:00
parent 03f24fbce2
commit 7b653ec95d

View File

@ -56,7 +56,7 @@ class SttDialog : DialogFragment() {
if (matcher.matches()) {
val name_found = matcher.group(1)
for (player in players) {
if (name_found == player.name) {
if (name_found.isEqual(player.name, ignoreCase=true)) {
dismiss()
updateScore(player)
updateUI()