jf-roku/components/data/ChannelData.brs
2020-10-17 14:23:20 -05:00

17 lines
295 B
Plaintext

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