mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-02 13:14:39 +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"));
|
"h1", "h2", "h3", "h4", "h5", "h6", "p", "ol", "ul", "li"));
|
||||||
|
|
||||||
static String sanitize(Context context, String html, boolean show_images) {
|
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);
|
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||||
boolean text_color = prefs.getBoolean("text_color", true);
|
boolean text_color = prefs.getBoolean("text_color", true);
|
||||||
boolean display_hidden = prefs.getBoolean("display_hidden", false);
|
boolean display_hidden = prefs.getBoolean("display_hidden", false);
|
||||||
|
|
Loading…
Reference in a new issue