mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-29 04:16:12 +00:00
Fix external sub conflict
This commit is contained in:
parent
2023188e30
commit
6c9d6e8593
2 changed files with 4 additions and 2 deletions
|
@ -426,7 +426,9 @@ class Player(xbmc.Player):
|
|||
dirs, files = xbmcvfs.listdir(path)
|
||||
|
||||
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 {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue