jellyfin-roku/components/search/SearchTask.brs
2022-09-05 07:50:13 +01:00

10 lines
187 B
Plaintext

sub init()
m.top.functionName = "search"
end sub
sub search()
if m.top.query <> invalid and m.top.query <> ""
m.top.results = searchMedia(m.top.query)
end if
end sub