Merge branch 'master' into master

This commit is contained in:
Alex 2025-03-05 19:12:29 +02:00 committed by GitHub
commit e281d61773
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 80 additions and 57 deletions

View file

@ -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):