Skip to content

Commit

Permalink
fix(@desktop/permissions): Fix filling collectibles and assets model …
Browse files Browse the repository at this point in the history
…in permissions

Fix #12885
  • Loading branch information
endulab authored and iurimatias committed Nov 30, 2023
1 parent 978b90b commit 258bde4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/modules/main/communities/module.nim
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,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

Expand Down

0 comments on commit 258bde4

Please sign in to comment.