Skip to content

Commit

Permalink
Release 1.1.6
Browse files Browse the repository at this point in the history
- tmdb fix
  • Loading branch information
itzikg committed Jan 30, 2017
1 parent 501a9a1 commit ec9265f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion addons.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</extension>
</addon>

<addon id="plugin.video.meta" name="Meta" version="1.1.5" provider-name="MetaTeam">
<addon id="plugin.video.meta" name="Meta" version="1.1.6" provider-name="MetaTeam">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
<import addon="script.module.requests"/>
Expand Down
2 changes: 1 addition & 1 deletion addons.xml.md5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f4ddd9e7a0fd0075286112490ee37b65
5896e6785b43fe766f02edc76f55aafb
2 changes: 1 addition & 1 deletion plugin.video.meta/addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.meta" name="Meta" version="1.1.5" provider-name="MetaTeam">
<addon id="plugin.video.meta" name="Meta" version="1.1.6" provider-name="MetaTeam">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
<import addon="script.module.requests"/>
Expand Down
3 changes: 3 additions & 0 deletions plugin.video.meta/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v1.1.6
- tmdb fix

v1.1.5
- maintenance

Expand Down
2 changes: 1 addition & 1 deletion plugin.video.meta/resources/lib/meta/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'] = ''

Expand Down
Binary file added zip/plugin.video.meta/plugin.video.meta-1.1.6.zip
Binary file not shown.

0 comments on commit ec9265f

Please sign in to comment.