mirror of https://github.com/M66B/FairEmail.git
Always retry with user/name
This commit is contained in:
parent
7102eb3812
commit
9136f61301
|
@ -309,7 +309,9 @@ public class FragmentQuickSetup extends FragmentBase {
|
|||
null, imap_fingerprint);
|
||||
} else
|
||||
throw ex;
|
||||
} catch (AuthenticationFailedException ex) {
|
||||
} catch (Throwable ex) {
|
||||
// Why not AuthenticationFailedException?
|
||||
// Some providers refuse connection with an invalid username
|
||||
if (!user.equals(username)) {
|
||||
Log.w(ex);
|
||||
user = username;
|
||||
|
|
Loading…
Reference in New Issue