Skip to content

Commit

Permalink
fix: blank video string not playing
Browse files Browse the repository at this point in the history
  • Loading branch information
MetaverseUnknower committed Apr 8, 2023
1 parent 5821f0c commit 7fee28e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/classes/StoredVideo.ts
Expand Up @@ -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 &&
Expand Down

0 comments on commit 7fee28e

Please sign in to comment.