mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix playback play from http and remember error
Still waiting for someone to post a log to troubleshoot the actual play from http issue some people seem to be experiencing.
This commit is contained in:
parent
542679a0f0
commit
682f9418af
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ class PlayUtils():
|
|||
resp = xbmcgui.Dialog().select('Warning: Unable to direct play.', ['Play from HTTP', 'Play from HTTP and remember next time.'])
|
||||
if resp == 1:
|
||||
# Remember next time
|
||||
addon.setSetting('playFromStream', "true")
|
||||
self.addon.setSetting('playFromStream', "true")
|
||||
else:
|
||||
# User decided not to proceed.
|
||||
self.logMsg("Unable to direct play. Verify the following path is accessible by the device: %s. You might also need to add SMB credentials in the addon settings." % result[u'MediaSources'][0][u'Path'])
|
||||
|
|
Loading…
Reference in a new issue