mirror of
https://github.com/anticensority/runet-censorship-bypass.git
synced 2025-01-31 11:54:14 +03:00
Fix the bug with non-descriptive warnings. Make DNS errors non-critical
This commit is contained in:
parent
b77be60946
commit
93aa084de9
|
@ -492,7 +492,6 @@
|
|||
warns.push(ipsErr);
|
||||
}
|
||||
if (ipsWarns.length) {
|
||||
console.log('PUSHING W:', ipsWarns); // TODO:
|
||||
warns.push(...ipsWarns);
|
||||
}
|
||||
this.pushToStorageAsync(
|
||||
|
|
|
@ -87,7 +87,7 @@
|
|||
"message": "Error"
|
||||
},
|
||||
"Non_critical_error": {
|
||||
"message": "Non-critical error. Don't worry and go on"
|
||||
"message": "Non-critical error. Don't worry: it works"
|
||||
},
|
||||
"Donate": {
|
||||
"message": "Donate"
|
||||
|
|
|
@ -87,7 +87,7 @@
|
|||
"message": "Ошибка"
|
||||
},
|
||||
"Non_critical_error": {
|
||||
"message": "Некритичная ошибка. Всё хорошо, продолжайте работу"
|
||||
"message": "Некритичная ошибка. Всё хорошо, продолжаем работу"
|
||||
},
|
||||
"Donate": {
|
||||
"message": "Поддержать"
|
||||
|
|
|
@ -215,7 +215,6 @@ export default function getApp(theState) {
|
|||
|
||||
let messageHtml = err ? errToHtmlMessage(err) : '';
|
||||
|
||||
console.log('WARNS:', warns); // TODO:
|
||||
const warningHtml = warns
|
||||
.filter((w) => w)
|
||||
.map(
|
||||
|
@ -267,15 +266,8 @@ export default function getApp(theState) {
|
|||
this.setStatusTo(beforeStatus);
|
||||
this.switchInputs('off');
|
||||
operation((err, res, ...warns) => {
|
||||
|
||||
if (warns.length && warns[0].length === 0) {
|
||||
throw new Error('WWWWARNS'); // TODO:
|
||||
}
|
||||
console.log('W BEFORE:', warns); // TODO:
|
||||
warns = warns.filter( (w) => w );
|
||||
console.log('W AFTER:', warns); // TODO:
|
||||
if (err || warns.length) {
|
||||
console.log('APP ERR, WARNS:', err, warns); // TODO:
|
||||
this.showErrors(err, ...warns);
|
||||
} else {
|
||||
this.setStatusTo(afterStatus);
|
||||
|
|
|
@ -151,7 +151,6 @@
|
|||
([[v4err, v4res], [v6err, v6res]]) => {
|
||||
|
||||
if(v4err) {
|
||||
console.log('V4RES:', v4res); // TODO:
|
||||
return cb(v4err, v4res);
|
||||
}
|
||||
const ips = v4res;
|
||||
|
@ -161,7 +160,6 @@
|
|||
} else {
|
||||
warns = [v6err];
|
||||
}
|
||||
console.log('ALL WARNS FOR IPS:', warns); // TODO:
|
||||
cb(null, ips, ...warns);
|
||||
|
||||
}
|
||||
|
@ -275,15 +273,16 @@
|
|||
Promise.all( promises ).then( (cbsRes) => {
|
||||
|
||||
let ipErrors = cbsRes.map( ([err]) => err ).filter( (err) => err );
|
||||
let warns = [];
|
||||
if (ipErrors.length) {
|
||||
ipErrors = clarify(
|
||||
warns = [clarify(
|
||||
ipErrors,
|
||||
'Не удалось получить один или несколько IP адресов для' +
|
||||
' прокси-серверов. Иконка для уведомления об обходе' +
|
||||
' блокировок может не отображаться.'
|
||||
);
|
||||
}
|
||||
cb(null, null, ipErrors);
|
||||
)];
|
||||
} else {}
|
||||
cb(null, null, ...warns);
|
||||
});
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user