aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranna wimbauer <anna.wibauer@gmx.de>2020-10-26 11:41:30 +0100
committeranna wimbauer <anna.wibauer@gmx.de>2020-10-26 11:41:30 +0100
commit3eb7e4f33f6da5a0d76abdca65c0e0c84fd62316 (patch)
tree46922fb7cf6b82ed5e9d26f17694538a758bab00
parent959cc776f23a086339844fdedcd69d32bd4118db (diff)
downloadreclaim-ui-3eb7e4f33f6da5a0d76abdca65c0e0c84fd62316.tar.gz
reclaim-ui-3eb7e4f33f6da5a0d76abdca65c0e0c84fd62316.zip
periodic running test
-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