Fix crash with trends

pull/483/head
Thomas 2 years ago
parent e9fd84d7eb
commit 39c49fad77

@ -121,6 +121,7 @@ public class FragmentMastodonTag extends Fragment {
binding.noActionText.setText(R.string.no_tags);
return;
}
if (search != null) {
Collections.sort(tags, (obj1, obj2) -> Integer.compare(obj2.getWeight(), obj1.getWeight()));
boolean isInCollection = false;
for (Tag tag : tags) {
@ -135,6 +136,7 @@ public class FragmentMastodonTag extends Fragment {
tag.history = new ArrayList<>();
tags.add(0, tag);
}
}
binding.recyclerView.setVisibility(View.VISIBLE);
binding.noAction.setVisibility(View.GONE);
tagAdapter = new TagAdapter(tags);

Loading…
Cancel
Save