From 1411b93f2d4e845c79592b94fa2b10bc5cd39f1c Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 14 Sep 2022 13:53:44 +1000 Subject: [PATCH] fix: do not let mentioning members with their unblindedPubkey room blinded --- ts/node/sql.ts | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/ts/node/sql.ts b/ts/node/sql.ts index 29c8bd6a6..e71b1da05 100644 --- a/ts/node/sql.ts +++ b/ts/node/sql.ts @@ -9,6 +9,7 @@ import { difference, forEach, fromPairs, + isArray, isEmpty, isNumber, isObject, @@ -646,10 +647,23 @@ function getAllOpenGroupV2ConversationsIds(): Array { } function getPubkeysInPublicConversation(conversationId: string) { + const conversation = getV2OpenGroupRoom(conversationId); + if (!conversation) { + return []; + } + + const hasBlindOn = Boolean( + conversation.capabilities && + isArray(conversation.capabilities) && + conversation.capabilities?.includes('blind') + ); + + const whereClause = hasBlindOn ? 'AND source LIKE "15%"' : ''; + const rows = assertGlobalInstance() .prepare( `SELECT DISTINCT source FROM ${MESSAGES_TABLE} WHERE - conversationId = $conversationId + conversationId = $conversationId ${whereClause} ORDER BY received_at DESC LIMIT ${MAX_PUBKEYS_MEMBERS};` ) .all({