mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-21 13:25:03 +00:00
Updated regex to allow uppercase
This commit is contained in:
parent
fa156e5aa5
commit
3b43fbc56e
1 changed files with 1 additions and 1 deletions
|
|
@ -419,7 +419,7 @@ class AccountPreferenceFragment :
|
|||
}
|
||||
}
|
||||
|
||||
private val regex = "[^a-z0-9_-]".toRegex()
|
||||
private val regex = "[^a-zA-Z0-9_-]".toRegex()
|
||||
|
||||
private fun showLoginNameDialog() {
|
||||
showSingleEntryDialog(user?.username, getString(R.string.username), {
|
||||
|
|
|
|||
Loading…
Reference in a new issue