Skip to content

Commit

Permalink
Merge pull request #2008 from Hafizzle/Fiz/username-case-sensitivity
Browse files Browse the repository at this point in the history
username case sensitivity
  • Loading branch information
phillipthelen committed Jul 7, 2023
2 parents b10aab0 + 0e59520 commit fd8e014
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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), {
Expand Down

0 comments on commit fd8e014

Please sign in to comment.