aboutsummaryrefslogtreecommitdiff
path: root/src/app/identity-list/identity-list.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/identity-list/identity-list.component.ts')
-rw-r--r--src/app/identity-list/identity-list.component.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/app/identity-list/identity-list.component.ts b/src/app/identity-list/identity-list.component.ts
index 909b5d6..b36f10d 100644
--- a/src/app/identity-list/identity-list.component.ts
+++ b/src/app/identity-list/identity-list.component.ts
@@ -379,11 +379,16 @@ export class IdentityListComponent implements OnInit {
379 this.closeModal('GnunetInfo'); 379 this.closeModal('GnunetInfo');
380 } 380 }
381 this.connected = true; 381 this.connected = true;
382
383 if(undefined !== this.route.snapshot.queryParams["authz_request"]){
384 return {"redirectUrl": "http://localhost:7776" + this.route.snapshot.queryParams["pathname"] + this.route.snapshot.queryParams["search"]};
385 }
382 }, 386 },
383 error => { 387 error => {
384 console.log(error); 388 console.log(error);
385 this.openModal('GnunetInfo'); 389 this.openModal('GnunetInfo');
386 this.connected = false; 390 this.connected = false;
391 setTimeout(() => this.updateIdentities(), 20000);
387 }); 392 });
388 } 393 }
389 394