This commit is contained in:
MMaker 2025-02-27 10:48:46 -05:00
parent ac86c5f5ee
commit aa836a4f55
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

2
app.py
View File

@ -290,7 +290,7 @@ def proxy(video_id):
video_width, video_height = get_video_resolution(params) if params else (None, None)
download_allowed = allow_download(params) if params else False
request_user_agent = request.headers.get('User-Agent', '')
request_user_agent = request.headers.get('User-Agent', '').lower()
if download_allowed and 'discordbot' not in request_user_agent:
logger.info(f"Download ignored for video ID {video_id} due to user agent ({request_user_agent})")
download_allowed = False