mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-25 02:06:09 +00:00
use the etag when available
This commit is contained in:
parent
d489375ab2
commit
e6784de347
1 changed files with 16 additions and 12 deletions
|
@ -120,9 +120,13 @@ class API():
|
||||||
}
|
}
|
||||||
|
|
||||||
def getChecksum(self, item):
|
def getChecksum(self, item):
|
||||||
#TODO --> use the etags or serverside checksum for this
|
# use the etags or serverside checksum for this if available
|
||||||
# for now we just add some fields to a string
|
# else just add some fields to a string
|
||||||
checksum = ""
|
checksum = ""
|
||||||
|
|
||||||
|
if item.get("Etag") != None:
|
||||||
|
checksum = item.get("Etag")
|
||||||
|
else:
|
||||||
userData = item.get("UserData")
|
userData = item.get("UserData")
|
||||||
if(userData != None):
|
if(userData != None):
|
||||||
checksum += str(userData.get("Played"))
|
checksum += str(userData.get("Played"))
|
||||||
|
|
Loading…
Reference in a new issue