Skip to content

Commit

Permalink
Remove 'debug' from the list of stores we import (#1532)
Browse files Browse the repository at this point in the history
Now that we log to disk, we no longer need the debug object store from
the Chrome export.

FREEBIE
  • Loading branch information
scottnonnenberg committed Oct 3, 2017
1 parent 99cf82d commit 3c45e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/backup.js
Original file line number Diff line number Diff line change
Expand Up @@ -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(', '));

Expand Down

0 comments on commit 3c45e9c

Please sign in to comment.