jf-roku/components/data/search-result.brs

13 lines
254 B
Plaintext
Raw Normal View History

2019-05-03 12:48:59 +00:00
sub setFields()
datum = m.top.json
m.top.id = datum.id
m.top.title = datum.name
m.top.type = datum.Type
if datum.posterURL <> invalid
m.top.posterURL = datum.posterURL
else
m.top.posterURL = ""
end if
end sub