Fix PKC sometimes selecting the wrong subtitle for direct paths
This commit is contained in:
parent
72b6a3fb7c
commit
15ede9a38a
2 changed files with 4 additions and 1 deletions
|
@ -343,6 +343,8 @@ class KodiMonitor(xbmc.Monitor):
|
||||||
# Mechanik for Plex skip intro feature
|
# Mechanik for Plex skip intro feature
|
||||||
if utils.settings('enableSkipIntro') == 'true':
|
if utils.settings('enableSkipIntro') == 'true':
|
||||||
status['intro_markers'] = item.api.intro_markers()
|
status['intro_markers'] = item.api.intro_markers()
|
||||||
|
if item.playmethod is None and not path.startswith('plugin://'):
|
||||||
|
item.playmethod = v.PLAYBACK_METHOD_DIRECT_PATH
|
||||||
item.playerid = playerid
|
item.playerid = playerid
|
||||||
# Remember the currently playing item
|
# Remember the currently playing item
|
||||||
app.PLAYSTATE.item = item
|
app.PLAYSTATE.item = item
|
||||||
|
|
|
@ -214,7 +214,8 @@ LANGUAGE_ISO_CODES = (
|
||||||
|
|
||||||
|
|
||||||
def accessible_plex_subtitles(playmethod, playing_file, xml_streams):
|
def accessible_plex_subtitles(playmethod, playing_file, xml_streams):
|
||||||
if not playmethod == v.PLAYBACK_METHOD_DIRECT_PATH:
|
if playmethod not in (v.PLAYBACK_METHOD_DIRECT_PATH,
|
||||||
|
v.PLAYBACK_METHOD_DIRECT_PLAY):
|
||||||
# We can access all subtitles because we're downloading additional
|
# We can access all subtitles because we're downloading additional
|
||||||
# external ones into the Kodi PKC add-on directory
|
# external ones into the Kodi PKC add-on directory
|
||||||
streams = []
|
streams = []
|
||||||
|
|
Loading…
Reference in a new issue