Files
Desktop/ts/util/canConversationBeUnarchived.ts
2025-10-09 13:03:13 -07:00

25 lines
578 B
TypeScript

// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { ConversationAttributesType } from '../model-types.d.ts';
import { isConversationMuted } from './isConversationMuted.js';
import { itemStorage } from '../textsecure/Storage.js';
export function canConversationBeUnarchived(
attrs: ConversationAttributesType
): boolean {
if (!attrs.isArchived) {
return false;
}
if (!isConversationMuted(attrs)) {
return true;
}
if (itemStorage.get('keepMutedChatsArchived') ?? false) {
return false;
}
return true;
}