fix(@desktop/permissions): Fix filling collectibles and assets model in permissions

Fix #12885
This commit is contained in:
Michal Iskierko 2023-11-28 16:29:58 +01:00 committed by Michał Iskierko
parent ab7085a184
commit 320a3a3e3d
1 changed files with 1 additions and 1 deletions

View File

@ -561,7 +561,7 @@ proc buildTokensAndCollectiblesFromCommunities(self: Module, communityTokens: se
let communities = self.controller.getAllCommunities()
for community in communities:
if not community.isOwner or not community.isTokenMaster:
if not community.isOwner and not community.isTokenMaster:
# No need to include those tokens, we do not manage that community
continue