mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 20:57:45 +03:00
enable custom name prefix
This commit is contained in:
parent
d922970d0c
commit
2ff7b0975a
5 changed files with 34 additions and 22 deletions
|
@ -94,7 +94,10 @@ async def add(request):
|
|||
raise web.HTTPBadRequest()
|
||||
format = post.get('format')
|
||||
folder = post.get('folder')
|
||||
status = await dqueue.add(url, quality, format, folder)
|
||||
custom_name_prefix = post.get('custom_name_prefix')
|
||||
if custom_name_prefix is None:
|
||||
custom_name_prefix = ''
|
||||
status = await dqueue.add(url, quality, format, folder, custom_name_prefix)
|
||||
return web.Response(text=serializer.encode(status))
|
||||
|
||||
@routes.post(config.URL_PREFIX + 'delete')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue