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

Commit 756ef446 authored by cketti's avatar cketti
Browse files

Revert part of previous commit

The variable 'user' in finishAutoSetup() is used to replace $user in
providers.xml and must hold the local part of the email address.
parent ded66625
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -276,7 +276,7 @@ public class AccountSetupBasics extends K9Activity
        String email = mEmailView.getText().toString();
        String password = mPasswordView.getText().toString();
        String[] emailParts = splitEmail(email);
        String user = email;
        String user = emailParts[0];
        String domain = emailParts[1];
        try {
            String userEnc = UrlEncodingHelper.encodeUtf8(user);