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:
|
try:
|
||||||
playcount = int(item['viewCount'])
|
playcount = int(item['viewCount'])
|
||||||
except:
|
except:
|
||||||
playcount = 0
|
playcount = None
|
||||||
|
|
||||||
if playcount:
|
if playcount:
|
||||||
played = True
|
played = True
|
||||||
|
|
Loading…
Reference in a new issue