Catch sanitize exceptions

pull/164/head
M66B 5 years ago
parent c11536ca0a
commit f6da762db2

@ -80,6 +80,16 @@ public class HtmlHelper {
"h1", "h2", "h3", "h4", "h5", "h6", "p", "ol", "ul", "li"));
static String sanitize(Context context, String html, boolean show_images) {
try {
return _sanitize(context, html, show_images);
} catch (Throwable ex) {
// OutOfMemoryError
Log.e(ex);
return Helper.formatThrowable(ex);
}
}
private static String _sanitize(Context context, String html, boolean show_images) {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean text_color = prefs.getBoolean("text_color", true);
boolean display_hidden = prefs.getBoolean("display_hidden", false);

Loading…
Cancel
Save