Contacts in documents tab of Media Gallery

This commit is contained in:
Fedor Indutny
2026-01-06 19:58:57 +01:00
committed by GitHub
parent 413ec4b7ac
commit e7b111e107
21 changed files with 482 additions and 75 deletions

View File

@@ -137,6 +137,7 @@ import updateToSchemaVersion1570 from './1570-pinned-messages-updates.std.js';
import updateToSchemaVersion1580 from './1580-expired-group-replies.std.js';
import updateToSchemaVersion1590 from './1590-megaphones.std.js';
import updateToSchemaVersion1600 from './1600-deduplicate-usernames.std.js';
import updateToSchemaVersion1610 from './1610-has-contacts.std.js';
import { DataWriter } from '../Server.node.js';
@@ -1632,7 +1633,9 @@ export const SCHEMA_VERSIONS: ReadonlyArray<SchemaUpdateType> = [
{ version: 1570, update: updateToSchemaVersion1570 },
{ version: 1580, update: updateToSchemaVersion1580 },
{ version: 1590, update: updateToSchemaVersion1590 },
{ version: 1600, update: updateToSchemaVersion1600 },
{ version: 1610, update: updateToSchemaVersion1610 },
];
export class DBVersionFromFutureError extends Error {