Fix TV On Deck view and entire shows as watched

- Playcount was set to 0, not NULL/None in Kodi Database
This commit is contained in:
tomkat83 2016-04-07 15:13:05 +02:00
parent fdb42c1f26
commit b91145ecae

View file

@ -1278,7 +1278,7 @@ class API():
try: try:
playcount = int(item['viewCount']) playcount = int(item['viewCount'])
except: except:
playcount = 0 playcount = None
if playcount: if playcount:
played = True played = True