mirror of
				https://gitlab.com/comunic/comunicmobile
				synced 2025-11-03 19:54:12 +00:00 
			
		
		
		
	Fix unread conversations drop down
This commit is contained in:
		@@ -8,7 +8,7 @@ import 'package:comunic/models/unread_conversation.dart';
 | 
			
		||||
class UnreadConversationsList extends AbstractList<UnreadConversation> {
 | 
			
		||||
  /// Get the ID of the users included in this list
 | 
			
		||||
  Set<int> get usersID {
 | 
			
		||||
    final set = Set();
 | 
			
		||||
    final set = Set<int>();
 | 
			
		||||
    forEach((element) => set.addAll(element.message.usersID));
 | 
			
		||||
    return set;
 | 
			
		||||
  }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user