mirror of https://github.com/M66B/FairEmail.git
Prevent crash
This commit is contained in:
parent
11dec5c5bf
commit
5501a07e2d
|
@ -87,9 +87,11 @@ public class HtmlHelper {
|
|||
|
||||
// Remove Javascript
|
||||
for (Element e : document.select("*"))
|
||||
for (Attribute a : e.attributes())
|
||||
if (a.getValue().trim().toLowerCase().startsWith("javascript:"))
|
||||
for (Attribute a : e.attributes()) {
|
||||
String v = a.getValue();
|
||||
if (v != null && v.trim().toLowerCase().startsWith("javascript:"))
|
||||
e.removeAttr(a.getKey());
|
||||
}
|
||||
|
||||
// Remove scripts
|
||||
document.select("script").remove();
|
||||
|
|
Loading…
Reference in New Issue