Revert "Retrying retrieving sessionId"

This reverts commit a303f73273.
This commit is contained in:
angelblue05 2015-05-13 13:30:56 -05:00
parent a303f73273
commit 585b1ac64e
1 changed files with 0 additions and 13 deletions

View File

@ -84,19 +84,6 @@ 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()