14 lines
387 B
TypeScript
14 lines
387 B
TypeScript
// Copyright 2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { ConversationAttributesType } from '../model-types.d';
|
|
import type { ServiceIdString } from '../types/ServiceId';
|
|
|
|
export function getSendTarget({
|
|
serviceId,
|
|
pni,
|
|
}: Pick<ConversationAttributesType, 'serviceId' | 'pni'>):
|
|
| ServiceIdString
|
|
| undefined {
|
|
return serviceId || pni;
|
|
}
|