revert etag use as the API does not currently return the etag when

getting a collection of items (eg all episodes of a tv show).
This commit is contained in:
im85288 2015-05-02 17:16:33 +01:00
parent ba5211dcb8
commit bc09e570fd

View file

@ -124,9 +124,9 @@ class API():
# else just add some fields to a string
checksum = ""
if item.get("Etag") != None:
checksum = item.get("Etag")
else:
#if item.get("Etag") != None:
#checksum = item.get("Etag")
#else:
userData = item.get("UserData")
if(userData != None):
checksum += str(userData.get("Played"))