mirror of
https://github.com/jellyfin/jellyfin-roku.git
synced 2025-02-23 16:34:24 +00:00
Skip books on TV
This commit is contained in:
parent
6492fd3eda
commit
6743526014
@ -76,9 +76,12 @@ sub loadItems()
|
||||
resp = APIRequest(url, params)
|
||||
data = getJson(resp)
|
||||
for each item in data.Items
|
||||
tmp = CreateObject("roSGNode", "HomeData")
|
||||
tmp.json = item
|
||||
results.push(tmp)
|
||||
' Skip Books for now as we don't support it (issue #558)
|
||||
if item.Type <> "Book"
|
||||
tmp = CreateObject("roSGNode", "HomeData")
|
||||
tmp.json = item
|
||||
results.push(tmp)
|
||||
end if
|
||||
end for
|
||||
|
||||
else if m.top.itemsToLoad = "onNow"
|
||||
|
Loading…
x
Reference in New Issue
Block a user