HMS

Home Media Server for Roku Players
git clone https://www.brianlane.com/git/HMS
Log | Files | Refs | README | LICENSE

commit 478f48f6ff089e69a0057adabc8a0b23f4d925c2
parent 47ef21d1ac0147b0f51690189a4bd7ff12048eb5
Author: bcl <bcl@packwood.brianlane.com>
Date:   Mon, 29 May 2023 14:36:44 -0700

Always set the valid flag

This fixes the issue with a bad url not triggering the entry dialog.

Diffstat:
MHMS/components/ValidateURLTask.brs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/HMS/components/ValidateURLTask.brs b/HMS/components/ValidateURLTask.brs @@ -19,8 +19,8 @@ sub ValidateURL() ' See if there is a keystore available m.top.keystore = isUrlValid(m.top.serverurl+"/keystore/version") - m.top.valid = valid else print "Is NOT VALID" end if + m.top.valid = valid end sub