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 bebc2e1..becde23 100644 --- a/Client/src/app/components/live-stream/live-stream.component.ts +++ b/Client/src/app/components/live-stream/live-stream.component.ts @@ -14,7 +14,7 @@ export class LiveStreamComponent implements OnInit { public sermonVideo: string = 'https://ofbbutte.com/static/media/video/sermon.mp4'; public pleaseWait: string = 'https://ofbbutte.com/static/media/video/PleaseWait.jpg'; public clickToPlay: string = 'https://ofbbutte.com/static/media/video/ClickToPlay.jpg'; - public message: string = "Please Wait"; + public message: string = "Please Wait..."; public isReady: boolean = false; @@ -35,7 +35,7 @@ export class LiveStreamComponent implements OnInit { if (this.isReady === true) { this.showVideo = true; this.videoSrc = ''; - this.videoSrc = this.videoSrc; + this.videoSrc = this.sermonVideo; clearInterval(this.interval); } });