Small fix

This commit is contained in:
M66B 2019-03-06 10:39:28 +00:00
parent 125fca8219
commit 80b05a202e
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ public class HtmlHelper {
}
static Spanned fromHtml(@NonNull String html, @Nullable Html.ImageGetter imageGetter, @Nullable Html.TagHandler tagHandler) {
return HtmlCompat.fromHtml(html, FROM_HTML_SEPARATOR_LINE_BREAK_LIST_ITEM, imageGetter, null);
return HtmlCompat.fromHtml(html, FROM_HTML_SEPARATOR_LINE_BREAK_LIST_ITEM, imageGetter, tagHandler);
}
static String toHtml(Spanned spanned) {