mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
only add trailers that are actually local
This commit is contained in:
parent
3b78b8e765
commit
4606ad5e79
1 changed files with 3 additions and 2 deletions
|
@ -220,6 +220,7 @@ class CreateFiles():
|
||||||
jsonData = downloadUtils.downloadUrl(itemTrailerUrl, suppress=True, popup=0 )
|
jsonData = downloadUtils.downloadUrl(itemTrailerUrl, suppress=True, popup=0 )
|
||||||
if(jsonData != ""):
|
if(jsonData != ""):
|
||||||
trailerItem = json.loads(jsonData)
|
trailerItem = json.loads(jsonData)
|
||||||
|
if trailerItem[0].get("LocationType") == "FileSystem":
|
||||||
trailerUrl = "plugin://plugin.video.mb3sync/?id=" + trailerItem[0].get("Id") + '&mode=play'
|
trailerUrl = "plugin://plugin.video.mb3sync/?id=" + trailerItem[0].get("Id") + '&mode=play'
|
||||||
SubElement(root, "trailer").text = trailerUrl
|
SubElement(root, "trailer").text = trailerUrl
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue