mirror of
https://github.com/anticensority/runet-censorship-bypass.git
synced 2024-11-10 19:46:34 +03:00
Make warning non-fatal
This commit is contained in:
parent
4f4103405a
commit
4bb8f7d50e
|
@ -109,7 +109,7 @@
|
||||||
|
|
||||||
const warnings = [];
|
const warnings = [];
|
||||||
const originalCb = cb;
|
const originalCb = cb;
|
||||||
cb = (...args) => originalCb(...args, ...warnings);
|
cb = (err, res, ...warns) => originalCb(err, res, ...warns, ...warnings);
|
||||||
const addWarning = (wText) => { warnings.push(new Warning(wText)) };
|
const addWarning = (wText) => { warnings.push(new Warning(wText)) };
|
||||||
|
|
||||||
if (provider.distinctKey === 'Anticensority') {
|
if (provider.distinctKey === 'Anticensority') {
|
||||||
|
@ -124,8 +124,6 @@
|
||||||
(по умолчанию — локальный <a href="https://rebrand.ly/ac-tor">TOR</a>, для его отключения: Свои прокси -> откл. "Использовать прокси PAC-скрипта").
|
(по умолчанию — локальный <a href="https://rebrand.ly/ac-tor">TOR</a>, для его отключения: Свои прокси -> откл. "Использовать прокси PAC-скрипта").
|
||||||
\`,
|
\`,
|
||||||
);
|
);
|
||||||
cb();
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user