From 56a01884f77eadb08a0f861ce80ac11b8b60ac2c Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Mon, 1 Feb 2021 15:32:54 +0100 Subject: [PATCH] :bug: --- funcs/other/bedreNetflix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]