signal-desktop/ts/util/isMessageNoteToSelf.ts
2024-10-11 11:30:10 -05:00

13 lines
376 B
TypeScript

// Copyright 2024 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { ReadonlyMessageAttributesType } from '../model-types.d';
export function isMessageNoteToSelf(
message: Pick<ReadonlyMessageAttributesType, 'conversationId'>
): boolean {
return (
message.conversationId ===
window.ConversationController.getOurConversationId()
);
}