Fix: Login errors were not helpful as error.details NOTICE THE "S" typo gobbled up the error message.
Also changed client to device
This commit is contained in:
parent
e0ef5e7b64
commit
77dad64eab
@ -65,11 +65,11 @@ export class LoginComponent implements OnInit, AfterViewInit {
|
||||
this.router.navigate([this.returnUrl]);
|
||||
},
|
||||
(error) => {
|
||||
if (error.status === 401 && error.error.detail === 'Client is not registered') {
|
||||
if (error.status === 401 && error.error.detail === 'Device is not registered') {
|
||||
this.showOtp = true;
|
||||
this.clientId = this.cs.getCookie('client_id');
|
||||
this.clientId = this.cs.getCookie('device_id');
|
||||
}
|
||||
this.toaster.show('Error', error.error.details);
|
||||
this.toaster.show('Error', error.error.detail);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user