Skip to content
Snippets Groups Projects
Commit a46797b6 authored by Bruno Muniz's avatar Bruno Muniz
Browse files

Fixed bug w/ hidden groups

parent caedaee8
No related branches found
No related tags found
2 merge requests!40v1.1.2b166,!38Using new database structure
...@@ -130,7 +130,10 @@ final class ChatListViewModel { ...@@ -130,7 +130,10 @@ final class ChatListViewModel {
authStatus: [.friend] authStatus: [.friend]
), ),
groupChatInfoQuery: GroupChatInfo.Query(), groupChatInfoQuery: GroupChatInfo.Query(),
groupQuery: Group.Query(withMessages: false) groupQuery: Group.Query(
withMessages: false,
authStatus: [.participating]
)
)) ))
.assertNoFailure() .assertNoFailure()
.sink { [unowned self] in chatsSubject.send($0) } .sink { [unowned self] in chatsSubject.send($0) }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment