mirror of
https://codeberg.org/tom79/Fedilab
synced 2025-02-01 11:56:52 +01:00
Fix crash with trends
This commit is contained in:
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…
x
Reference in New Issue
Block a user