jf-roku/components/data/ChannelData.brs
Neil Burrows ea245d2abc Initial LiveTV Support
Most of the work from Alex Gonzales (@Musi13)
2020-05-31 16:05:22 +01:00

16 lines
266 B
Plaintext

sub setFields()
json = m.top.json
m.top.id = json.id
m.top.title = json.name
m.top.live = true
end sub
sub setPoster()
if m.top.image <> invalid
m.top.posterURL = m.top.image.url
else
m.top.posterURL = ""
end if
end sub