Playcount fix

Seems it was attached to the watched status instead of the actual
playcount value.
This commit is contained in:
angelblue05 2015-04-28 18:45:39 -05:00
parent 2f3d609f53
commit f0fb6d390b
1 changed files with 4 additions and 4 deletions

View File

@ -131,12 +131,12 @@ class API():
favorite="True"
else:
favorite="False"
if(userData.get("Played") == True):
playcount="1"
if (userData.get("PlayCount")):
playcount= userData.get("PlayCount")
else:
playcount="0"
playcount ="0"
if userData.get('UnplayedItemCount') != None:
UnplayedItemCount = userData.get('UnplayedItemCount')
UnplayedItemCount = str(userData.get('UnplayedItemCount'))
else:
UnplayedItemCount = "0"
if userData.get('LastPlayedDate') != None: