mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-04-28 13:38:48 +00:00
Fix plugin paths & Attempt to fix photos
Emby removed photos library. Now it's homevideo and photos. Had to tweak a few things. Update plugin patha to properly encode naming.
This commit is contained in:
parent
81e8da575a
commit
c0012582c8
4 changed files with 58 additions and 23 deletions
|
@ -3,14 +3,13 @@
|
|||
##################################################################################################
|
||||
|
||||
import logging
|
||||
import urllib
|
||||
from ntpath import dirname
|
||||
|
||||
import api
|
||||
import embydb_functions as embydb
|
||||
import _kodi_tvshows
|
||||
from _common import Items, catch_except
|
||||
from utils import window, settings, language as lang
|
||||
from utils import window, settings, language as lang, plugin_path
|
||||
|
||||
##################################################################################################
|
||||
|
||||
|
@ -630,7 +629,7 @@ class TVShows(Items):
|
|||
'dbid': episodeid,
|
||||
'mode': "play"
|
||||
}
|
||||
filename = "%s?%s" % (path, urllib.urlencode(params))
|
||||
filename = plugin_path(path, params)
|
||||
|
||||
##### UPDATE THE EPISODE #####
|
||||
if update_item:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue