Fix redirect on order list page

This commit is contained in:
Rene Vergara 2022-07-14 13:12:26 -05:00
parent 2535e23db6
commit 4fe5857383
Signed by: pitmutt
GPG key ID: 65122AD495A7F5B2
2 changed files with 5 additions and 4 deletions

View file

@ -167,6 +167,7 @@ export class LoginComponent implements OnInit, AfterViewInit {
} }
//console.log('Log in found in blockchain!'); //console.log('Log in found in blockchain!');
if (user.validated) { if (user.validated) {
clearInterval(this.intervalHolder);
if (this.owner.paid) { if (this.owner.paid) {
this.router.navigate(['/shop']); this.router.navigate(['/shop']);
} else { } else {

View file

@ -80,9 +80,9 @@ export class ViewerComponent implements OnInit {
this.message = owner.name; this.message = owner.name;
}); });
this.loginCheck(); this.loginCheck();
this.intervalHolder = setInterval(() => { //this.intervalHolder = setInterval(() => {
this.loginCheck(); //this.loginCheck();
}, 60000); //}, 60000);
} }
ngOnDestroy(){ ngOnDestroy(){
@ -124,7 +124,7 @@ export class ViewerComponent implements OnInit {
this.owner = owner; this.owner = owner;
this.userUpdate.subscribe((user) => { this.userUpdate.subscribe((user) => {
this.user = user; this.user = user;
//console.log('Viewer loginCheck', this.user); console.log('Viewer loginCheck', this.user);
if (!this.owner.paid || !this.user.validated) { if (!this.owner.paid || !this.user.validated) {
console.log('Log in expired!'); console.log('Log in expired!');
this.router.navigate(['/login']); this.router.navigate(['/login']);