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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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;
`
);
})();
}