From d5d6cdb2501fbff776e57fcc13e9ae0e8ee60b26 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Wed, 18 Jul 2018 16:49:03 -0700 Subject: [PATCH] Automatically clean up old debug info, remove unneeded field --- js/background.js | 9 +++++++-- js/models/conversations.js | 1 - 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/js/background.js b/js/background.js index a5b5330a2..8f3b31546 100644 --- a/js/background.js +++ b/js/background.js @@ -226,13 +226,18 @@ } }); - function start() { + async function start() { const currentVersion = window.getVersion(); const lastVersion = storage.get('version'); const newVersion = !lastVersion || currentVersion !== lastVersion; - storage.put('version', currentVersion); + await storage.put('version', currentVersion); if (newVersion) { + if (currentVersion === '1.14.2' || currentVersion === '1.15.0-beta.2') { + await window.Signal.Logs.deleteAll(); + window.restart(); + } + console.log( `New version detected: ${currentVersion}; previous: ${lastVersion}` ); diff --git a/js/models/conversations.js b/js/models/conversations.js index 32a20a269..a3cb2096d 100644 --- a/js/models/conversations.js +++ b/js/models/conversations.js @@ -155,7 +155,6 @@ }, async onExpiredCollection(message) { - console.log('onExpiredCollection', message.attributes); const removeMessage = () => { console.log('Remove expired message from collection', { sentAt: message.get('sent_at'),