Throwable wrapper

This commit is contained in:
M66B
2023-12-12 20:55:55 +01:00
parent cbcc467408
commit d56b5fa43e
29 changed files with 50 additions and 44 deletions

View File

@@ -5798,7 +5798,7 @@ public class MessageHelper {
}
} catch (Throwable ex) {
Log.e(ex);
report.append(TextUtils.htmlEncode(ex.toString()));
report.append(TextUtils.htmlEncode(new ThrowableWrapper(ex).toSafeString()));
}
report.append("</div>");
this.html = report.toString();