Show full error for OAuth

This commit is contained in:
M66B
2021-05-03 21:35:03 +02:00
parent 90aec5dfaf
commit 8d1dee0deb
2 changed files with 3 additions and 3 deletions

View File

@@ -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() {