mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-13 21:56:11 +00:00
one more fix for transcoding
This commit is contained in:
parent
74f96b2e13
commit
097dae3d31
1 changed files with 6 additions and 8 deletions
|
@ -99,8 +99,7 @@ class WriteKodiDB():
|
||||||
|
|
||||||
#set Filename
|
#set Filename
|
||||||
playurl = PlayUtils().getPlayUrl(server, MBitem["Id"], MBitem)
|
playurl = PlayUtils().getPlayUrl(server, MBitem["Id"], MBitem)
|
||||||
if playurl.startswith("http"):
|
if not playurl.startswith("http"):
|
||||||
playurl = "plugin://plugin.video.emby/?id=" + MBitem["Id"] + '&mode=play'
|
|
||||||
if playurl != KodiItem["file"]:
|
if playurl != KodiItem["file"]:
|
||||||
self.setKodiFilename(KodiItem["movieid"], playurl, "movie")
|
self.setKodiFilename(KodiItem["movieid"], playurl, "movie")
|
||||||
|
|
||||||
|
@ -434,8 +433,7 @@ class WriteKodiDB():
|
||||||
|
|
||||||
#set Filename
|
#set Filename
|
||||||
playurl = PlayUtils().getPlayUrl(server, MBitem["Id"], MBitem)
|
playurl = PlayUtils().getPlayUrl(server, MBitem["Id"], MBitem)
|
||||||
if playurl.startswith("http"):
|
if not playurl.startswith("http"):
|
||||||
playurl = "plugin://plugin.video.emby/?id=" + MBitem["Id"] + '&mode=play'
|
|
||||||
if playurl != KodiItem["file"]:
|
if playurl != KodiItem["file"]:
|
||||||
self.setKodiFilename(KodiItem["episodeid"], playurl, "episode")
|
self.setKodiFilename(KodiItem["episodeid"], playurl, "episode")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue