Merge pull request #2489 from Bilb/fix-quoting-unblinded-ids

fix: do not show members with their unblindedPubkey on room blinded
pull/2491/head
Audric Ackermann 3 years ago committed by GitHub
commit 5e04c0b675
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,6 +9,7 @@ import {
difference,
forEach,
fromPairs,
isArray,
isEmpty,
isNumber,
isObject,
@ -646,10 +647,23 @@ function getAllOpenGroupV2ConversationsIds(): Array<string> {
}
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({

Loading…
Cancel
Save