Split ring in two to avoid routing issue

This commit is contained in:
Gautier P 2020-12-03 00:06:20 +01:00
parent 8ca602575c
commit a2366a26bd
2 changed files with 14 additions and 1 deletions

View file

@ -50,6 +50,8 @@ BR.Message = L.Class.extend({
err = i18next.t('warning.invalid-route-to');
} else if (err == 'from-position not mapped in existing datafile\n') {
err = i18next.t('warning.invalid-route-from');
} else if (err && err.startsWith('null description for: ')) {
err = i18next.t('warning.no-route-found');
}
this._show(err, 'error');
},