Only log "too long" if not a Twitterbot

This commit is contained in:
MMaker 2025-03-04 10:23:38 -05:00
parent d8da55520f
commit 8089130b7e
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

2
app.py
View File

@ -373,7 +373,7 @@ def proxy(video_id):
if 'twitterbot' in request_user_agent or not download_allowed:
if 'twitterbot' in request_user_agent:
logger.info(f"{video_id}: Twitterbot detected - adding Twitter tags")
if not download_allowed:
elif not download_allowed:
logger.info(f"{video_id}: Video too long to download - will not show play button")
og_tags_str += f'\n<meta content="{thumbnail_url}" property="twitter:image"/>'
og_tags_str += '\n<meta content="summary_large_image" property="twitter:card"/>'