mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-29 03:05:31 +00:00
Catch sanitize exceptions
This commit is contained in:
parent
c11536ca0a
commit
f6da762db2
1 changed files with 10 additions and 0 deletions
|
@ -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…
Reference in a new issue