Storage Service Write: Improved conflict handling

This commit is contained in:
Josh Perez 2020-09-29 19:29:11 -04:00 committed by Josh Perez
parent 866217a724
commit 27759233e4
10 changed files with 297 additions and 134 deletions

View file

@ -2271,7 +2271,7 @@ async function eraseStorageServiceStateFromConversations() {
await db.run(
`UPDATE conversations SET
json = json_remove(json, '$.storageID', '$.needsStorageServiceSync', '$.unknownFields');
json = json_remove(json, '$.storageID', '$.needsStorageServiceSync', '$.unknownFields', '$.storageProfileKey');
`
);
}