Commit 1cd49669 authored by dev0tion's avatar dev0tion

Fix login component (only status code 200 as response)

parent 0ba55e7e
......@@ -83,7 +83,6 @@ export class LoginComponent implements OnInit {
.subscribe(
response => {
if (response.status >= 200 && response.status < 400) {
let responseMessage = response.json();
this.globalService.setWalletName(walletLoad.name)
this.globalService.setCoinType(1);
this.router.navigate(['/wallet']);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment