From ba8903c3ace6d6a507cfe7d6052a9dbc72074a08 Mon Sep 17 00:00:00 2001 From: dan Date: Sun, 22 Mar 2020 17:18:31 -0600 Subject: [PATCH] update isready --- .../src/app/components/live-stream/live-stream.component.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Client/src/app/components/live-stream/live-stream.component.ts b/Client/src/app/components/live-stream/live-stream.component.ts index 841789a..30e5695 100644 --- a/Client/src/app/components/live-stream/live-stream.component.ts +++ b/Client/src/app/components/live-stream/live-stream.component.ts @@ -35,12 +35,10 @@ export class LiveStreamComponent implements OnInit { var service = nonArchivedReady[0]; this.message = (service).message; if (service.isReady === true) { - if (this.isReady === true) { - this.showVideo = true; + this.showVideo = true; this.videoSrc = ''; this.videoSrc = service.src; clearInterval(this.interval); - } } } });