From 70ee977c986561569ad447a1f8816f72d96f4124 Mon Sep 17 00:00:00 2001 From: kj1352 Date: Wed, 14 Apr 2021 07:16:28 +0530 Subject: [PATCH] Check score data each time the page has been visited --- src/app/live/live.page.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/live/live.page.ts b/src/app/live/live.page.ts index c359640..6823d82 100644 --- a/src/app/live/live.page.ts +++ b/src/app/live/live.page.ts @@ -239,6 +239,10 @@ export class LivePage implements OnInit { } ngOnInit() { + + } + + ionViewDidEnter() { this.matchService.getFixtures().then((data: Array) => { this.fixtures = data; @@ -276,9 +280,6 @@ export class LivePage implements OnInit { }); } - ionViewDidEnter() { - } - showMatchDetails() { this.router.navigate(['/match-details', { match_id: this.currentMatch.Matchdetail.Match.Id }]); }