mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-25 10:16:11 +00:00
bring back jarvis compatibility
This commit is contained in:
parent
b572d60cd9
commit
450c2a6ba6
1 changed files with 3 additions and 3 deletions
|
@ -270,13 +270,13 @@ class Movies(Items):
|
||||||
log.info("ADD movie itemid: %s - Title: %s", itemid, title)
|
log.info("ADD movie itemid: %s - Title: %s", itemid, title)
|
||||||
|
|
||||||
# add new ratings Kodi 17
|
# add new ratings Kodi 17
|
||||||
if self.kodi_version > 16:
|
if self.kodi_version >= 17:
|
||||||
ratingid = self.kodi_db.create_entry_rating()
|
ratingid = self.kodi_db.create_entry_rating()
|
||||||
|
|
||||||
self.kodi_db.add_ratings(ratingid, movieid, "movie", "default", rating, votecount)
|
self.kodi_db.add_ratings(ratingid, movieid, "movie", "default", rating, votecount)
|
||||||
|
|
||||||
# add new uniqueid Kodi 17
|
# add new uniqueid Kodi 17
|
||||||
if self.kodi_version > 16:
|
if self.kodi_version >= 17:
|
||||||
uniqueid = self.kodi_db.create_entry_uniqueid()
|
uniqueid = self.kodi_db.create_entry_uniqueid()
|
||||||
|
|
||||||
self.kodi_db.add_uniqueid(uniqueid, movieid, "movie", imdb, "imdb")
|
self.kodi_db.add_uniqueid(uniqueid, movieid, "movie", imdb, "imdb")
|
||||||
|
@ -287,7 +287,7 @@ class Movies(Items):
|
||||||
fileid = self.kodi_db.add_file(filename, pathid)
|
fileid = self.kodi_db.add_file(filename, pathid)
|
||||||
|
|
||||||
# Create the movie entry
|
# Create the movie entry
|
||||||
if self.kodi_version > 16:
|
if self.kodi_version >= 17:
|
||||||
self.kodi_db.add_movie_17(movieid, fileid, title, plot, shortplot, tagline,
|
self.kodi_db.add_movie_17(movieid, fileid, title, plot, shortplot, tagline,
|
||||||
votecount, uniqueid, writer, year, uniqueid, sorttitle,
|
votecount, uniqueid, writer, year, uniqueid, sorttitle,
|
||||||
runtime, mpaa, genre, director, title, studio, trailer,
|
runtime, mpaa, genre, director, title, studio, trailer,
|
||||||
|
|
Loading…
Reference in a new issue