diff --git a/funcs/other/bedreNetflix.py b/funcs/other/bedreNetflix.py index 5357f40..0b5753a 100644 --- a/funcs/other/bedreNetflix.py +++ b/funcs/other/bedreNetflix.py @@ -93,7 +93,7 @@ class BedreNetflix(): movies = imdb.IMDb().search_movie(showName) #Replace with tvdb shows = [] for movie in movies: - if movie["kind"] == "tv series": + if movie["kind"] in ["tv series","tv miniseries"]: shows.append(movie) if len(shows) > 5: shows = shows[:5]