Catch sanitize exceptions

This commit is contained in:
M66B 2019-10-20 14:15:20 +02:00
parent c11536ca0a
commit f6da762db2
1 changed files with 10 additions and 0 deletions

View File

@ -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);