Small playback fixes
This commit is contained in:
parent
543cec93b4
commit
f094ca4299
2 changed files with 4 additions and 2 deletions
|
@ -117,8 +117,7 @@ class PlaybackUtils():
|
|||
|
||||
############### -- CHECK FOR INTROS ################
|
||||
|
||||
if (settings('enableCinema') == "true" and not seektime and
|
||||
not window('emby_customPlaylist') == "true"):
|
||||
if (settings('enableCinema') == "true" and not seektime):
|
||||
# if we have any play them when the movie/show is not being resumed
|
||||
xml = PF.GetPlexPlaylist(
|
||||
itemid,
|
||||
|
|
|
@ -101,6 +101,9 @@ class PlayUtils():
|
|||
return False
|
||||
|
||||
path = self.API.getFilePath()
|
||||
if path is None:
|
||||
self.logMsg('PMS item does not have a filepath', 2)
|
||||
return False
|
||||
# Assign network protocol
|
||||
if path.startswith('\\\\'):
|
||||
path = path.replace('\\\\', 'smb://')
|
||||
|
|
Loading…
Add table
Reference in a new issue