Prefer auth exception

This commit is contained in:
M66B 2020-09-22 20:05:39 +02:00
parent 68d1c8b03e
commit 81f9e16a4b
1 changed files with 6 additions and 1 deletions

View File

@ -317,6 +317,7 @@ public class FragmentQuickSetup extends FragmentBase {
} else
throw ex;
} catch (Throwable ex) {
Log.w(ex);
// Why not AuthenticationFailedException?
// Some providers terminate the connection with an invalid username
if (user.equals(username))
@ -332,7 +333,11 @@ public class FragmentQuickSetup extends FragmentBase {
null, null);
} catch (Throwable ex1) {
Log.w(ex1);
throw ex;
if (!(ex instanceof AuthenticationFailedException) &&
ex1 instanceof AuthenticationFailedException)
throw ex1;
else
throw ex;
}
}