Use identical add-on paths for On Deck and browsing folders
This commit is contained in:
parent
2f99ac8282
commit
bfd4415fa1
1 changed files with 10 additions and 4 deletions
|
@ -562,8 +562,11 @@ def getOnDeck(viewid, mediatype, tagname, limit):
|
|||
if directpaths:
|
||||
url = api.file_path()
|
||||
else:
|
||||
url = ('plugin://%s.tvshows/?plex_id=%s&plex_type=%s&mode=play'
|
||||
% (v.ADDON_ID, api.plex_id(), api.plex_type()))
|
||||
url = ('plugin://%s.tvshows/?plex_id=%s&plex_type=%s&mode=play&filename=%s'
|
||||
% (v.ADDON_ID,
|
||||
api.plex_id(),
|
||||
api.plex_type(),
|
||||
api.file_path(force_first_media=True)))
|
||||
xbmcplugin.addDirectoryItem(
|
||||
handle=HANDLE,
|
||||
url=url,
|
||||
|
@ -831,8 +834,11 @@ def __build_item(xml_element):
|
|||
elif api.plex_type() == v.PLEX_TYPE_PHOTO:
|
||||
url = api.get_picture_path()
|
||||
else:
|
||||
url = 'plugin://%s/?plex_id=%s&plex_type=%s&mode=play' \
|
||||
% (v.ADDON_TYPE[api.plex_type()], api.plex_id(), api.plex_type())
|
||||
url = 'plugin://%s/?plex_id=%s&plex_type=%s&mode=play&filename=%s' \
|
||||
% (v.ADDON_TYPE[api.plex_type()],
|
||||
api.plex_id(),
|
||||
api.plex_type(),
|
||||
api.file_path(force_first_media=True))
|
||||
xbmcplugin.addDirectoryItem(handle=HANDLE,
|
||||
url=url,
|
||||
listitem=listitem)
|
||||
|
|
Loading…
Reference in a new issue