This commit is contained in:
NikolajDanger
2021-02-01 15:32:54 +01:00
parent c43304f7d6
commit 56a01884f7

View File

@ -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]