Correction: L'application se bloque lorsque les identifiants entrés dans la connexion sont incorrectes

This commit is contained in:
FyloZ 2021-04-19 09:06:37 -04:00
parent 26415c7f8c
commit f4e750b0b0
1 changed files with 2 additions and 2 deletions

View File

@ -74,12 +74,12 @@ export class AccountService implements OnDestroy {
success()
},
error: err => {
if (err.status === 401) {
globalLoadingWheel.hide()
if (err.status === 401 || err.status === 403) {
this.alertService.pushError('Les identifiants entrés sont invalides')
} else {
this.errorService.handleError(err)
}
globalLoadingWheel.hide()
}
})
}