From a507f938b05499907ab3918850ae88c67d4c1b88 Mon Sep 17 00:00:00 2001 From: 1hitsong <3330318+1hitsong@users.noreply.github.com> Date: Thu, 18 May 2023 21:57:04 -0400 Subject: [PATCH] Remove use of uninitialized variable Fixes #1274 --- source/Main.brs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/source/Main.brs b/source/Main.brs index ada6c81e..d2532473 100644 --- a/source/Main.brs +++ b/source/Main.brs @@ -569,11 +569,7 @@ sub Main (args as dynamic) as void else if not isValid(node.showID) sceneManager.callFunc("popScene") else - if video.errorMsg = "" - autoPlayNextEpisode(node.id, node.showID) - else - sceneManager.callFunc("popScene") - end if + autoPlayNextEpisode(node.id, node.showID) end if end if end if