🐛
This commit is contained in:
@@ -93,7 +93,7 @@ class BedreNetflix():
|
|||||||
movies = imdb.IMDb().search_movie(showName) #Replace with tvdb
|
movies = imdb.IMDb().search_movie(showName) #Replace with tvdb
|
||||||
shows = []
|
shows = []
|
||||||
for movie in movies:
|
for movie in movies:
|
||||||
if movie["kind"] == "tv series":
|
if movie["kind"] in ["tv series","tv miniseries"]:
|
||||||
shows.append(movie)
|
shows.append(movie)
|
||||||
if len(shows) > 5:
|
if len(shows) > 5:
|
||||||
shows = shows[:5]
|
shows = shows[:5]
|
||||||
|
|||||||
Reference in New Issue
Block a user