2022-02-16 18:36:21 +00:00
|
|
|
// Copyright 2022 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2022-03-30 00:14:01 +00:00
|
|
|
import { isNotNil } from '../../util/isNotNil';
|
|
|
|
|
2022-02-16 18:36:21 +00:00
|
|
|
export function getUntrustedConversationIds(
|
|
|
|
recipients: ReadonlyArray<string>
|
|
|
|
): Array<string> {
|
2022-03-30 00:14:01 +00:00
|
|
|
return recipients
|
|
|
|
.map(recipient => {
|
|
|
|
const recipientConversation = window.ConversationController.getOrCreate(
|
|
|
|
recipient,
|
|
|
|
'private'
|
|
|
|
);
|
|
|
|
return recipientConversation.isUntrusted()
|
|
|
|
? recipientConversation.id
|
|
|
|
: null;
|
|
|
|
})
|
|
|
|
.filter(isNotNil);
|
2022-02-16 18:36:21 +00:00
|
|
|
}
|