Files
Desktop/ts/util/canConversationBeUnarchived.preload.ts
T
2026-03-30 11:54:59 -07:00

25 lines
590 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.std.ts';
import { itemStorage } from '../textsecure/Storage.preload.ts';
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;
}