ignore case
This commit is contained in:
parent
03f24fbce2
commit
7b653ec95d
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user