jf-roku/components/quickConnect/QuickConnect.brs
2022-06-01 17:02:47 -06:00

14 lines
267 B
Plaintext

sub init()
m.top.functionName = "monitorQuickConnect"
end sub
sub monitorQuickConnect()
authenticated = checkQuickConnect(m.top.secret)
if authenticated = true
m.top.authenticated = 1
else
m.top.authenticated = -1
end if
end sub