mirror of
https://github.com/anticensority/runet-censorship-bypass.git
synced 2024-11-10 19:46:34 +03:00
Automatically switch to Antizapret for <=1.23
This commit is contained in:
parent
0cfbc063f1
commit
ec6450096f
|
@ -245,7 +245,7 @@
|
|||
|
||||
},
|
||||
|
||||
_currentPacProviderKey: 'Антицензорити',
|
||||
_currentPacProviderKey: 'Антизапрет',
|
||||
|
||||
/* Is it the first time extension installed?
|
||||
Do something, e.g. initiate PAC sync.
|
||||
|
@ -585,8 +585,40 @@
|
|||
}
|
||||
|
||||
}
|
||||
if (window.apis.version.isLeq(oldStorage.version, '0.0.1.23')) {
|
||||
|
||||
// Switch to Antizapret automatically, only from Anitcensority without own proxies.
|
||||
if (antiCensorRu.getCurrentPacProviderKey !== 'Антицензорити') {
|
||||
return; // Not Anticensority.
|
||||
}
|
||||
const pacMods = window.apis.pacKitchen.getPacMods();
|
||||
if (!pacMods.ifUsePacScriptProxies) {
|
||||
return; // Pac script proxies are not used.
|
||||
}
|
||||
antiCensorRu.setCurrentPacProviderKey('Антизапрет');
|
||||
await new Promise((resolveSwitch) =>
|
||||
|
||||
antiCensorRu.syncWithPacProviderAsync((err, res, warns) => {
|
||||
|
||||
if (warns) {
|
||||
console.log(warns);
|
||||
}
|
||||
if (err) {
|
||||
console.log('Ungraceful update from 1.23: couldn\'t fetch Antizapret:');
|
||||
console.error(err);
|
||||
} else {
|
||||
console.log('Update from 1.23 applied successfully.');
|
||||
}
|
||||
resolveSwitch();
|
||||
|
||||
}),
|
||||
);
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
// Swallow update error.
|
||||
// Log update error.
|
||||
console.log('UPDATE ERROR:');
|
||||
console.error(e);
|
||||
}
|
||||
ifUpdatedCb();
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user