From ab189f8533d21114243e9e88b41a9d8201e67ad2 Mon Sep 17 00:00:00 2001 From: Qiao Wang Date: Wed, 13 Dec 2023 21:06:39 +0800 Subject: [PATCH] Fix the behavior when auto-start option is not explicitly passed --- app/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/main.py b/app/main.py index 366a851..1c1cbf6 100644 --- a/app/main.py +++ b/app/main.py @@ -120,6 +120,8 @@ async def add(request): auto_start = post.get('auto_start') if custom_name_prefix is None: custom_name_prefix = '' + if auto_start is None: + auto_start = True status = await dqueue.add(url, quality, format, folder, custom_name_prefix, auto_start) return web.Response(text=serializer.encode(status))