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
This commit is contained in:
Scott Nonnenberg 2017-10-03 11:06:47 -07:00 committed by GitHub
parent 99cf82d01a
commit 3c45e9c350

View file

@ -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(', '));