mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
harden just a bit more the migration code
This commit is contained in:
parent
c9a5b4c6ac
commit
06f9ac033f
1 changed files with 9 additions and 4 deletions
|
@ -27,21 +27,26 @@
|
|||
|
||||
(function() {
|
||||
let µb = µBlock;
|
||||
let migratedKeys = new Set();
|
||||
|
||||
let migrateAll = function(callback) {
|
||||
let mustRestart = false;
|
||||
|
||||
let migrateKeyValue = function(details, callback) {
|
||||
// https://github.com/gorhill/uBlock/issues/2653
|
||||
// Be ready to deal graciously with corrupted DB.
|
||||
if ( migratedKeys.has(details.key) ) {
|
||||
callback();
|
||||
return;
|
||||
}
|
||||
migratedKeys.add(details.key);
|
||||
let bin = {};
|
||||
bin[details.key] = JSON.parse(details.value);
|
||||
self.browser.storage.local.set(bin, callback);
|
||||
mustRestart = true;
|
||||
};
|
||||
|
||||
let migrateNext = function() {
|
||||
self.browser.runtime.sendMessage({ what: 'webext:storageMigrateNext' }, response => {
|
||||
if ( response.key === undefined ) {
|
||||
if ( mustRestart ) {
|
||||
if ( migratedKeys.size !== 0 ) {
|
||||
self.browser.runtime.reload();
|
||||
} else {
|
||||
callback();
|
||||
|
|
Loading…
Reference in a new issue