Retrying retrieving sessionId

But only after capabilities have been posted, instead of before.
This commit is contained in:
angelblue05 2015-05-13 13:23:33 -05:00
parent 54dd08e9bd
commit a303f73273

View file

@ -84,6 +84,19 @@ class DownloadUtils():
except:
self.logMsg("Posted capabilities failed.")
# Attempt at getting sessionId
url = "{server}/mediabrowser/Sessions?DeviceId=%s&format=json" % deviceId
try:
result = self.downloadUrl(url)
self.logMsg("Session: %s" % result, 2)
sessionId = result[0][u'Id']
self.logMsg("SessionId: %s" % sessionId)
self.WINDOW.setProperty("sessionId%s" % self.username, sessionId)
except:
self.logMsg("Failed to retrieve sessionId.", 1)
def startSession(self):
self.deviceId = self.clientInfo.getMachineId()