Updated regex to allow uppercase

This commit is contained in:
Hafiz 2023-07-05 15:32:18 -04:00 committed by Phillip Thelen
parent fa156e5aa5
commit 3b43fbc56e

View file

@ -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), {