Fix retry logic

This commit is contained in:
Fedor Indutny
2023-10-11 20:38:03 +02:00
committed by GitHub
parent e124730cb0
commit 8c966dfbd8
2 changed files with 13 additions and 7 deletions

View File

@@ -5728,7 +5728,10 @@ async function removeAllConfiguration(
}
db.exec(
"UPDATE conversations SET json = json_remove(json, '$.senderKeyInfo');"
`
UPDATE conversations SET json = json_remove(json, '$.senderKeyInfo');
UPDATE storyDistributions SET senderKeyInfoJson = NULL;
`
);
})();
}