Merge pull request #687 from oddstr13/pr-movie-premiere-1

Properly apply Movie premiered date
This commit is contained in:
mcarlton00 2022-10-29 17:49:41 -04:00 committed by GitHub
commit 3e7f1ffcca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 3 deletions

View File

@ -26,3 +26,6 @@ indent_size = 2
[resources/settings.xml]
indent_style = tab
[jellyfin_kodi/objects/obj_map.json]
indent_style = tab

View File

@ -291,7 +291,7 @@ VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
add_movie_obj = ["{MovieId}", "{FileId}", "{Title}", "{Plot}", "{ShortPlot}", "{Tagline}",
"{Votes}", "{RatingId}", "{Writers}", "{Year}", "{Unique}", "{SortTitle}",
"{Runtime}", "{Mpaa}", "{Genre}", "{Directors}", "{Title}", "{Studio}",
"{Trailer}", "{Country}", "{Year}"]
"{Trailer}", "{Country}", "{Premiere}"]
add_rating = """
INSERT INTO rating(rating_id, media_id, media_type, rating_type, rating, votes)
VALUES (?, ?, ?, ?, ?, ?)
@ -405,7 +405,7 @@ WHERE idMovie = ?
update_movie_obj = ["{Title}", "{Plot}", "{ShortPlot}", "{Tagline}", "{Votes}", "{RatingId}",
"{Writers}", "{Year}", "{Unique}", "{SortTitle}", "{Runtime}",
"{Mpaa}", "{Genre}", "{Directors}", "{Title}", "{Studio}", "{Trailer}",
"{Country}", "{Year}", "{MovieId}"]
"{Country}", "{Premiere}", "{MovieId}"]
update_rating = """
UPDATE rating
SET media_id = ?, media_type = ?, rating_type = ?, rating = ?, votes = ?

View File

@ -94,6 +94,8 @@ class Movies(KodiDb):
obj['Video'] = API.video_streams(obj['Video'] or [], obj['Container'])
obj['Audio'] = API.audio_streams(obj['Audio'] or [])
obj['Streams'] = API.media_streams(obj['Video'], obj['Audio'], obj['Subtitles'])
if obj['Premiere'] is not None:
obj['Premiere'] = obj['Premiere'].split('T')[0]
self.get_path_filename(obj)
self.trailer(obj)

View File

@ -13,6 +13,7 @@
"UniqueId": "ProviderIds/Imdb",
"Rating": "CommunityRating",
"Year": "ProductionYear",
"Premiere": "PremiereDate,ProductionYear",
"Votes": "VoteCount",
"Plot": "Overview",
"ShortPlot": "ShortOverview",