From a6aed4d7d147917bc986b6b438b204f366e1c202 Mon Sep 17 00:00:00 2001 From: Brice-W Date: Tue, 27 Jul 2021 13:54:38 +1000 Subject: [PATCH] fix isAdmin to return the right value for closed groups --- ts/models/conversation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/models/conversation.ts b/ts/models/conversation.ts index 2bfb47f22..5ccfa93bd 100644 --- a/ts/models/conversation.ts +++ b/ts/models/conversation.ts @@ -1110,7 +1110,7 @@ export class ConversationModel extends Backbone.Model { } public isAdmin(pubKey?: string) { - if (!this.isPublic()) { + if (!this.isPublic() && !this.isGroup()) { return false; } if (!pubKey) {