refactor: refs #6172 Added real message error
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Guillermo Bonet 2023-11-14 07:58:33 +01:00
parent b53e454b8b
commit 6527cae72a
2 changed files with 2 additions and 1 deletions

View File

@ -18,6 +18,7 @@ Show summary: Mostrar vista previa
What is new: Novedades de la versión
Settings: Ajustes
There is a new version, click here to reload: Hay una nueva versión, pulse aquí para recargar
This ticket is locked.: Este ticket está bloqueado
# Actions

View File

@ -120,7 +120,7 @@ function $exceptionHandler(vnApp, $window, $state, $injector) {
messageT = 'Invalid login';
break;
case 403:
messageT = (exception.data.error.message) ? exception.data.error.message : 'Access denied';
messageT = exception.data.error.message || 'Access denied';
break;
case 502:
messageT = 'It seems that the server has fall down';