Always retry with user/name

pull/180/head
M66B 5 years ago
parent 7102eb3812
commit 9136f61301

@ -309,7 +309,9 @@ public class FragmentQuickSetup extends FragmentBase {
null, imap_fingerprint); null, imap_fingerprint);
} else } else
throw ex; throw ex;
} catch (AuthenticationFailedException ex) { } catch (Throwable ex) {
// Why not AuthenticationFailedException?
// Some providers refuse connection with an invalid username
if (!user.equals(username)) { if (!user.equals(username)) {
Log.w(ex); Log.w(ex);
user = username; user = username;

Loading…
Cancel
Save