Normalize message attachments

This commit is contained in:
trevor-signal
2025-05-22 21:09:54 -04:00
committed by GitHub
parent 8d8e0329cf
commit d6e81eee11
39 changed files with 2540 additions and 807 deletions

View File

@@ -110,10 +110,11 @@ import { updateToSchemaVersion1310 } from './1310-muted-fixup';
import { updateToSchemaVersion1320 } from './1320-unprocessed-received-at-date';
import { updateToSchemaVersion1330 } from './1330-sync-tasks-type-index';
import { updateToSchemaVersion1340 } from './1340-recent-gifs';
import { updateToSchemaVersion1350 } from './1350-notification-profiles';
import {
updateToSchemaVersion1350,
updateToSchemaVersion1360,
version as MAX_VERSION,
} from './1350-notification-profiles';
} from './1360-attachments';
import { DataWriter } from '../Server';
@@ -2102,6 +2103,7 @@ export const SCHEMA_VERSIONS = [
updateToSchemaVersion1330,
updateToSchemaVersion1340,
updateToSchemaVersion1350,
updateToSchemaVersion1360,
];
export class DBVersionFromFutureError extends Error {