MessageReceipts: Removed dropped receipts from cache and database

This commit is contained in:
Scott Nonnenberg 2025-03-19 08:44:33 +10:00 committed by GitHub
commit ac5d0eba0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 35 additions and 5 deletions

View file

@ -902,6 +902,7 @@ type WritableInterface = {
) => void;
removeSyncTaskById: (id: string) => void;
removeSyncTasks: (ids: ReadonlyArray<string>) => void;
saveSyncTasks: (tasks: Array<SyncTaskType>) => void;
incrementAllSyncTaskAttempts: () => void;