mirror of https://github.com/M66B/FairEmail.git
Prevent crash
This commit is contained in:
parent
9d31158dee
commit
475b7b492b
|
@ -290,7 +290,8 @@ public class HtmlHelper {
|
|||
if (e.isBlock() && !e.hasText() && e.select("img").size() == 0)
|
||||
e.remove();
|
||||
|
||||
return document.body().html();
|
||||
Element body = document.body();
|
||||
return (body == null ? "" : body.html());
|
||||
}
|
||||
|
||||
static Drawable decodeImage(String source, Context context, long id, boolean show) {
|
||||
|
|
Loading…
Reference in New Issue