diff --git a/app/main.py b/app/main.py index b8519f6..776892b 100644 --- a/app/main.py +++ b/app/main.py @@ -31,7 +31,7 @@ async def dropoutSeries(): return JSONResponse(content={"error": "File not found"}, status_code=404) @app.get("/dropoutDownload") -async def dropoutDownload(show: str, season: str, episode: str): +async def dropoutDownload(show: str, season: str, episode: str = None): download.dropout.show(show,season,episode) @app.get("/ydl")