Change defaults for conversation title generation

This commit is contained in:
Fedor Indutny 2024-02-07 13:38:43 -08:00 committed by GitHub
parent 6a165da589
commit bd922433e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 142 additions and 24 deletions

View file

@ -73,10 +73,11 @@ import { updateToSchemaVersion940 } from './940-fts5-revert';
import { updateToSchemaVersion950 } from './950-fts5-secure-delete';
import { updateToSchemaVersion960 } from './960-untag-pni';
import { updateToSchemaVersion970 } from './970-fts5-optimize';
import { updateToSchemaVersion980 } from './980-reaction-timestamp';
import {
version as MAX_VERSION,
updateToSchemaVersion980,
} from './980-reaction-timestamp';
updateToSchemaVersion990,
} from './990-phone-number-sharing';
function updateToSchemaVersion1(
currentVersion: number,
@ -2017,6 +2018,7 @@ export const SCHEMA_VERSIONS = [
updateToSchemaVersion960,
updateToSchemaVersion970,
updateToSchemaVersion980,
updateToSchemaVersion990,
];
export class DBVersionFromFutureError extends Error {