mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-09 18:43:23 +02:00
Show full error for OAuth
This commit is contained in:
@@ -303,7 +303,7 @@ public class FragmentGmail extends FragmentBase {
|
||||
|
||||
Log.e(ex);
|
||||
|
||||
tvError.setText(Log.formatThrowable(ex));
|
||||
tvError.setText(Log.formatThrowable(ex, false));
|
||||
grpError.setVisibility(View.VISIBLE);
|
||||
|
||||
getMainHandler().post(new Runnable() {
|
||||
@@ -525,7 +525,7 @@ public class FragmentGmail extends FragmentBase {
|
||||
if (ex instanceof IllegalArgumentException)
|
||||
tvError.setText(ex.getMessage());
|
||||
else
|
||||
tvError.setText(Log.formatThrowable(ex));
|
||||
tvError.setText(Log.formatThrowable(ex, false));
|
||||
grpError.setVisibility(View.VISIBLE);
|
||||
|
||||
getMainHandler().post(new Runnable() {
|
||||
|
||||
Reference in New Issue
Block a user