Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 309eab4a authored by Nihar Thakkar's avatar Nihar Thakkar
Browse files

Automatically convert username to lower-case during /e/ account login

parent e8ac0ebe
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ class EeloAuthenticatorFragment : Fragment() {
        }

        return if (valid && uri != null)
            LoginInfo(uri, userName, password)
            LoginInfo(uri, userName.toLowerCase(), password)
        else
            null
    }