From 3c45e9c350c83b7c0056b597ed5b35c7c5be41cc Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Tue, 3 Oct 2017 11:06:47 -0700 Subject: [PATCH] Remove 'debug' from the list of stores we import (#1532) Now that we log to disk, we no longer need the debug object store from the Chrome export. FREEBIE --- js/backup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/backup.js b/js/backup.js index 997e0254c480..da5f533d2d45 100644 --- a/js/backup.js +++ b/js/backup.js @@ -173,7 +173,7 @@ function importFromJsonString(idb_db, jsonString) { return new Promise(function(resolve, reject) { var importObject = JSON.parse(jsonString); - var storeNames = _.keys(importObject); + var storeNames = _.without(_.keys(importObject), ['debug']); console.log('Importing to these stores:', storeNames.join(', '));