jf-roku/components/data/ChannelData.brs

17 lines
295 B
Plaintext
Raw Normal View History

sub setFields()
json = m.top.json
m.top.id = json.id
m.top.Title = json.name
2020-10-17 19:23:20 +00:00
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