mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-09-30 02:04:55 +00:00
wrap the set window prop for file name in a try
This commit is contained in:
parent
66eb53dc08
commit
f7c79e366e
2 changed files with 5 additions and 2 deletions
|
@ -66,7 +66,10 @@ class PlayUtils():
|
|||
def getPlayUrl(self):
|
||||
|
||||
# log filename, used by other addons eg subtitles which require the file name
|
||||
window('embyfilename', value=self.directPlay())
|
||||
try:
|
||||
window('embyfilename', value=self.directPlay())
|
||||
except:
|
||||
log.info("Could not get file path for embyfilename window prop")
|
||||
|
||||
playurl = None
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue