mirror of
				https://codeberg.org/tom79/Fedilab.git
				synced 2025-10-20 11:20:16 +03:00 
			
		
		
		
	Fix crash with trends
This commit is contained in:
		
							parent
							
								
									e9fd84d7eb
								
							
						
					
					
						commit
						39c49fad77
					
				
					 1 changed files with 14 additions and 12 deletions
				
			
		| 
						 | 
				
			
			@ -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…
	
		Reference in a new issue