0
1
Fork 0

#4253 Hotfix: OutdatedVersionError not handled

This commit is contained in:
Juan Ferrer 2023-01-31 14:09:01 +01:00
parent efc7342359
commit 406b2f8300
3 changed files with 4 additions and 4 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (22.48.9) stable; urgency=low
hedera-web (22.48.10) stable; urgency=low
* Initial Release.

View File

@ -198,11 +198,11 @@ module.exports = new Class({
,async _onConnError(conn, err) {
if (!(err instanceof Vn.JsonException)) return;
switch (err.exception) {
case 'UserDisabled':
case 'UserDisabledError':
Htk.Toast.showError(_('User disabled'));
await this._logout();
return;
case 'OutdatedVersion':
case 'OutdatedVersionError':
this._newVersion();
return;
}

View File

@ -1,6 +1,6 @@
{
"name": "hedera-web",
"version": "22.48.9",
"version": "22.48.10",
"description": "Verdnatura web page",
"license": "GPL-3.0",
"repository": {