From 7fee28e52540ec178674ca6bfdf5d0363a51c6b1 Mon Sep 17 00:00:00 2001 From: Unknower Date: Sat, 8 Apr 2023 12:53:30 -0400 Subject: [PATCH] fix: blank video string not playing --- src/classes/StoredVideo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classes/StoredVideo.ts b/src/classes/StoredVideo.ts index c22ca22..eabb7e3 100644 --- a/src/classes/StoredVideo.ts +++ b/src/classes/StoredVideo.ts @@ -509,7 +509,7 @@ export class StoredVideoCheckSystem implements ISystem { return; } - if (this.video.enableLiveStream && this.live && !this.instancesHidden) { + if (this.video.liveLink && this.video.enableLiveStream && this.live && !this.instancesHidden) { // If live stream is enabled and is live, skip the block for removing the video when "NONE" is the off type } else if ( this.video.offType === EVideoSourceTypes.NONE &&