Merge pull request #948 from konstantinullrich/#893-Unhandled-Promise-Rejection-error-when-updating

Move cleanupOrphanedAttachments before restart
pull/950/head
Mikunj Varsani 5 years ago committed by GitHub
commit 64778d15d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -401,17 +401,13 @@
await storage.put('version', currentVersion);
if (newVersion) {
if (
lastVersion &&
window.isBeforeVersion(lastVersion, 'v1.15.0-beta.5')
) {
await window.Signal.Logs.deleteAll();
window.restart();
}
window.log.info(
`New version detected: ${currentVersion}; previous: ${lastVersion}`
);
await window.Signal.Data.cleanupOrphanedAttachments();
await window.Signal.Logs.deleteAll();
}
if (isIndexedDBPresent) {
@ -434,10 +430,6 @@
Views.Initialization.setMessage(window.i18n('optimizingApplication'));
if (newVersion) {
await window.Signal.Data.cleanupOrphanedAttachments();
}
Views.Initialization.setMessage(window.i18n('loading'));
idleDetector = new IdleDetector();

Loading…
Cancel
Save