mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-05 16:43:26 +02:00
Wrap throwables
This commit is contained in:
@@ -1760,7 +1760,7 @@ public class Helper {
|
||||
|
||||
tvType.setText(type);
|
||||
|
||||
tvException.setText(ex == null ? null : ex.toString());
|
||||
tvException.setText(ex == null ? null : new ThrowableWrapper(ex).toSafeString());
|
||||
tvException.setVisibility(ex == null ? View.GONE : View.VISIBLE);
|
||||
|
||||
AlertDialog.Builder builder = new AlertDialog.Builder(context)
|
||||
|
||||
Reference in New Issue
Block a user