diff --git a/app/src/main/java/com/stario/launcher/sheet/briefing/dialog/page/FeedPageAdapter.java b/app/src/main/java/com/stario/launcher/sheet/briefing/dialog/page/FeedPageAdapter.java index 930784df..3639d2b9 100644 --- a/app/src/main/java/com/stario/launcher/sheet/briefing/dialog/page/FeedPageAdapter.java +++ b/app/src/main/java/com/stario/launcher/sheet/briefing/dialog/page/FeedPageAdapter.java @@ -193,9 +193,9 @@ public boolean onResourceReady(@NonNull Drawable resource, @NonNull Object model .setDuration(Animation.MEDIUM.getDuration()); if (!item.getCategories().isEmpty()) { - String text = item.getCategories().get(0); + Spanned text = cleanHtml(item.getCategories().get(0)); - if (!text.isEmpty()) { + if (!text.toString().isEmpty()) { viewHolder.category.setText(text); viewHolder.category.setVisibility(View.VISIBLE); }