Show full error for OAuth

pull/198/head
M66B 4 years ago
parent 90aec5dfaf
commit 8d1dee0deb

@ -303,7 +303,7 @@ public class FragmentGmail extends FragmentBase {
Log.e(ex); Log.e(ex);
tvError.setText(Log.formatThrowable(ex)); tvError.setText(Log.formatThrowable(ex, false));
grpError.setVisibility(View.VISIBLE); grpError.setVisibility(View.VISIBLE);
getMainHandler().post(new Runnable() { getMainHandler().post(new Runnable() {
@ -525,7 +525,7 @@ public class FragmentGmail extends FragmentBase {
if (ex instanceof IllegalArgumentException) if (ex instanceof IllegalArgumentException)
tvError.setText(ex.getMessage()); tvError.setText(ex.getMessage());
else else
tvError.setText(Log.formatThrowable(ex)); tvError.setText(Log.formatThrowable(ex, false));
grpError.setVisibility(View.VISIBLE); grpError.setVisibility(View.VISIBLE);
getMainHandler().post(new Runnable() { getMainHandler().post(new Runnable() {

@ -678,7 +678,7 @@ public class FragmentOAuth extends FragmentBase {
if (ex instanceof IllegalArgumentException) if (ex instanceof IllegalArgumentException)
tvError.setText(ex.getMessage()); tvError.setText(ex.getMessage());
else else
tvError.setText(Log.formatThrowable(ex)); tvError.setText(Log.formatThrowable(ex, false));
grpError.setVisibility(View.VISIBLE); grpError.setVisibility(View.VISIBLE);

Loading…
Cancel
Save