From 682f9418af47a01a207f394326397ab88f84a16a Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Wed, 22 Jul 2015 20:36:41 -0500 Subject: [PATCH] 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. --- resources/lib/PlayUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/PlayUtils.py b/resources/lib/PlayUtils.py index fdbe715a..c87c1077 100644 --- a/resources/lib/PlayUtils.py +++ b/resources/lib/PlayUtils.py @@ -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'])