mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Merge pull request #547 from mcarlton00/external-subs
Fix external sub conflict
This commit is contained in:
commit
fe8bbba7b6
2 changed files with 4 additions and 2 deletions
|
@ -519,7 +519,7 @@ class PlayUtils(object):
|
||||||
LOG.info("[ subtitles/%s ] %s", index, url)
|
LOG.info("[ subtitles/%s ] %s", index, url)
|
||||||
|
|
||||||
if 'Language' in stream:
|
if 'Language' in stream:
|
||||||
filename = "Stream.%s.%s" % (stream['Language'], stream['Codec'])
|
filename = "%s.%s.%s" % (source['Id'], stream['Language'], stream['Codec'])
|
||||||
|
|
||||||
try:
|
try:
|
||||||
subs.append(self.download_external_subs(url, filename))
|
subs.append(self.download_external_subs(url, filename))
|
||||||
|
|
|
@ -426,7 +426,9 @@ class Player(xbmc.Player):
|
||||||
dirs, files = xbmcvfs.listdir(path)
|
dirs, files = xbmcvfs.listdir(path)
|
||||||
|
|
||||||
for file in files:
|
for file in files:
|
||||||
xbmcvfs.delete(os.path.join(path, file))
|
# Only delete the cached files for the previous play session
|
||||||
|
if item['Id'] in file:
|
||||||
|
xbmcvfs.delete(os.path.join(path, file))
|
||||||
|
|
||||||
result = item['Server'].jellyfin.get_item(item['Id']) or {}
|
result = item['Server'].jellyfin.get_item(item['Id']) or {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue