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:
parent
fdb42c1f26
commit
b91145ecae
1 changed files with 1 additions and 1 deletions
|
@ -1278,7 +1278,7 @@ class API():
|
|||
try:
|
||||
playcount = int(item['viewCount'])
|
||||
except:
|
||||
playcount = 0
|
||||
playcount = None
|
||||
|
||||
if playcount:
|
||||
played = True
|
||||
|
|
Loading…
Reference in a new issue