chore: Follow up active filter

This commit is contained in:
krille-chan 2024-07-22 20:06:55 +02:00
parent a500a91b6b
commit 9e737276b6
No known key found for this signature in database

View file

@ -100,7 +100,9 @@ class ChatListController extends State<ChatList>
context.push<String?>('/rooms/newspace');
}
ActiveFilter activeFilter = ActiveFilter.allChats;
ActiveFilter activeFilter = AppConfig.separateChatTypes
? ActiveFilter.messages
: ActiveFilter.allChats;
String? _activeSpaceId;
String? get activeSpaceId => _activeSpaceId;