SpiffTitles: add more IMDb template variables

This commit is contained in:
Gordon Shumway 2020-02-23 09:35:26 -05:00 committed by GitHub
parent 0c363bd63c
commit 536b1e5b54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1113,6 +1113,14 @@ class SpiffyTitles(callbacks.Plugin):
"rated": response["Rated"],
"runtime": response["Runtime"],
"writer": response["Writer"],
"votes": response["imdbVotes"],
"website": response["Website"],
"type": response["Type"],
"language": response["Language"],
"box_office": response["BoxOffice"],
"production": response["Production"],
"poster": response["Poster"],
"ratings": response["Ratings"],
"imdb_logo": self.get_imdb_logo()
}
result = imdb_template.render(template_vars)