Merge pull request #889 from croneter/fix-tvshows
Fix In Progress widgets being broken and tv shows showing up as completely watched
This commit is contained in:
commit
d4f23db945
1 changed files with 2 additions and 1 deletions
|
@ -611,8 +611,9 @@ class KodiVideoDB(common.KodiDBBase):
|
||||||
# Delete existing resume point
|
# Delete existing resume point
|
||||||
self.cursor.execute('DELETE FROM bookmark WHERE idFile = ?', (file_id,))
|
self.cursor.execute('DELETE FROM bookmark WHERE idFile = ?', (file_id,))
|
||||||
# Set watched count
|
# Set watched count
|
||||||
|
# Be careful to set playCount to None, NOT the int zero!
|
||||||
self.cursor.execute('UPDATE files SET playCount = ?, lastPlayed = ? WHERE idFile = ?',
|
self.cursor.execute('UPDATE files SET playCount = ?, lastPlayed = ? WHERE idFile = ?',
|
||||||
(playcount, dateplayed, file_id))
|
(playcount or None, dateplayed, file_id))
|
||||||
# Set the resume bookmark
|
# Set the resume bookmark
|
||||||
if resume_seconds:
|
if resume_seconds:
|
||||||
self.cursor.execute(
|
self.cursor.execute(
|
||||||
|
|
Loading…
Add table
Reference in a new issue