[develop | DONE | FIXED] ContextsService: revert last change for coomunity hidden status

This commit is contained in:
argirok 2024-02-14 12:14:32 +02:00
parent c50c3e2ad6
commit 9b9f817e62
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ export class ContextsService {
if(getAll) {
return this.communitiesSubject.getValue();
} else {
return this.communitiesSubject.getValue().filter(community => !community.isPrivate());
return this.communitiesSubject.getValue().filter(community => community.status != 'hidden');
}
}