Use @signalapp/sqlcipher

This commit is contained in:
Fedor Indutny
2025-03-12 14:45:54 -07:00
committed by GitHub
parent df7997b313
commit 5a9253bd44
118 changed files with 2497 additions and 1485 deletions

View File

@@ -2418,12 +2418,6 @@ export class SignalProtocolStore extends EventEmitter {
);
}
getUnprocessedById(id: string): Promise<UnprocessedType | undefined> {
return this.withZone(GLOBAL_ZONE, 'getUnprocessedById', async () => {
return DataReader.getUnprocessedById(id);
});
}
addUnprocessed(
data: UnprocessedType,
{ zone = GLOBAL_ZONE }: SessionTransactionOptions = {}