ignore series from omdbapi (for now?)

This commit is contained in:
Joel Kåberg
2013-12-15 10:05:51 +01:00
parent 8ed10037df
commit 95ff427873
@@ -82,6 +82,10 @@ class OMDBAPI(MovieProvider):
if tmp_movie.get(key).lower() == 'n/a':
del movie[key]
# Ignore series from omdbapi for now, should we use this in the future?
if movie.get('Type') == "series":
return
year = tryInt(movie.get('Year', ''))
actors = {}