mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 06:38:29 +02:00
Prevent Jsoup validation exception
This commit is contained in:
@@ -1658,8 +1658,11 @@ public class HtmlHelper {
|
||||
tag.startsWith("html:") || tag.startsWith("body:"));
|
||||
if (display_hidden || show) {
|
||||
String[] nstag = tag.split(":");
|
||||
e.tagName(nstag[nstag.length > 1 ? 1 : 0]);
|
||||
Log.i("Updated tag=" + tag + " to=" + e.tagName());
|
||||
String t = nstag[nstag.length > 1 ? 1 : 0];
|
||||
if (!TextUtils.isEmpty(t)) {
|
||||
e.tagName(t);
|
||||
Log.i("Updated tag=" + tag + " to=" + t);
|
||||
}
|
||||
|
||||
if (!show) {
|
||||
String style = e.attr("style");
|
||||
|
||||
Reference in New Issue
Block a user