diff --git a/addons.xml b/addons.xml index bfa4a77..6bfbd0f 100644 --- a/addons.xml +++ b/addons.xml @@ -23,7 +23,7 @@ - + diff --git a/addons.xml.md5 b/addons.xml.md5 index 3ea0512..e4683ec 100644 --- a/addons.xml.md5 +++ b/addons.xml.md5 @@ -1 +1 @@ -f4ddd9e7a0fd0075286112490ee37b65 \ No newline at end of file +5896e6785b43fe766f02edc76f55aafb \ No newline at end of file diff --git a/plugin.video.meta/addon.xml b/plugin.video.meta/addon.xml index cbaa165..2de42b2 100644 --- a/plugin.video.meta/addon.xml +++ b/plugin.video.meta/addon.xml @@ -1,5 +1,5 @@  - + diff --git a/plugin.video.meta/changelog.txt b/plugin.video.meta/changelog.txt index 75648db..bacfe84 100644 --- a/plugin.video.meta/changelog.txt +++ b/plugin.video.meta/changelog.txt @@ -1,3 +1,6 @@ +v1.1.6 +- tmdb fix + v1.1.5 - maintenance diff --git a/plugin.video.meta/resources/lib/meta/info.py b/plugin.video.meta/resources/lib/meta/info.py index 28a6f22..3230452 100644 --- a/plugin.video.meta/resources/lib/meta/info.py +++ b/plugin.video.meta/resources/lib/meta/info.py @@ -25,7 +25,7 @@ def get_movie_metadata(movie, genres_dict=None): info['genre'] = u" / ".join([x['name'] for x in movie['genres']]) except KeyError: if genres_dict: - info['genre'] = u" / ".join([genres_dict[x] for x in movie['genre_ids']]) + info['genre'] = u" / ".join([genres_dict[x] for x in movie['genre_ids'] if x in genres_dict]) else: info['genre'] = '' diff --git a/zip/plugin.video.meta/plugin.video.meta-1.1.6.zip b/zip/plugin.video.meta/plugin.video.meta-1.1.6.zip new file mode 100644 index 0000000..7a89139 Binary files /dev/null and b/zip/plugin.video.meta/plugin.video.meta-1.1.6.zip differ