Fix ratings for episodes
This commit is contained in:
parent
a7adfa1cc5
commit
5a6f0411f2
1 changed files with 3 additions and 2 deletions
|
@ -979,7 +979,8 @@ class TVShows(Items):
|
||||||
# Create the episode entry
|
# Create the episode entry
|
||||||
if v.KODIVERSION >= 17:
|
if v.KODIVERSION >= 17:
|
||||||
# add new ratings Kodi 17
|
# add new ratings Kodi 17
|
||||||
self.kodi_db.add_ratings(self.kodi_db.create_entry_rating(),
|
rating_id = self.kodi_db.create_entry_rating()
|
||||||
|
self.kodi_db.add_ratings(rating_id,
|
||||||
episodeid,
|
episodeid,
|
||||||
v.KODI_TYPE_EPISODE,
|
v.KODI_TYPE_EPISODE,
|
||||||
"default",
|
"default",
|
||||||
|
@ -999,7 +1000,7 @@ class TVShows(Items):
|
||||||
?, ?)
|
?, ?)
|
||||||
'''
|
'''
|
||||||
kodicursor.execute(query, (episodeid, fileid, title, plot,
|
kodicursor.execute(query, (episodeid, fileid, title, plot,
|
||||||
rating, writer, premieredate, runtime, director, season,
|
rating_id, writer, premieredate, runtime, director, season,
|
||||||
episode, title, showid, airsBeforeSeason,
|
episode, title, showid, airsBeforeSeason,
|
||||||
airsBeforeEpisode, playurl, pathid, seasonid,
|
airsBeforeEpisode, playurl, pathid, seasonid,
|
||||||
userdata['UserRating']))
|
userdata['UserRating']))
|
||||||
|
|
Loading…
Reference in a new issue