mirror of
https://github.com/alexta69/metube.git
synced 2025-04-03 20:27:36 +03:00
Merge branch 'master' into master
This commit is contained in:
commit
e281d61773
3 changed files with 80 additions and 57 deletions
|
@ -12,6 +12,7 @@ import json
|
|||
import pathlib
|
||||
|
||||
from ytdl import DownloadQueueNotifier, DownloadQueue
|
||||
from yt_dlp.version import __version__ as yt_dlp_version
|
||||
|
||||
log = logging.getLogger('main')
|
||||
|
||||
|
@ -246,6 +247,10 @@ def robots(request):
|
|||
)
|
||||
return response
|
||||
|
||||
@routes.get(config.URL_PREFIX + 'version')
|
||||
def version(request):
|
||||
return web.json_response({"version": yt_dlp_version})
|
||||
|
||||
if config.URL_PREFIX != '/':
|
||||
@routes.get('/')
|
||||
def index_redirect_root(request):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue