Fix initial all chats folder params

This commit is contained in:
Jamie
2025-10-24 14:39:18 -07:00
committed by GitHub
parent a7303477a1
commit 884139150a
3 changed files with 42 additions and 3 deletions

View File

@@ -0,0 +1,29 @@
// Copyright 2025 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { LoggerType } from '../../types/Logging.std.js';
import type { WritableDB } from '../Interface.std.js';
import { sql } from '../util.std.js';
export default function updateToSchemaVersion1500(
db: WritableDB,
logger: LoggerType
): void {
const FOLDER_TYPE_ALL = 1;
const [query, params] = sql`
UPDATE chatFolders
SET
includeAllIndividualChats = 1,
includeAllGroupChats = 1,
storageNeedsSync = 1
WHERE
folderType = ${FOLDER_TYPE_ALL}
AND (
includeAllIndividualChats IS 0
OR
includeAllGroupChats IS 0
)
`;
const result = db.prepare(query).run(params);
logger.info(`Updated ${result.changes} all chats chat folders`);
}