Only log "too long" if not a Twitterbot
This commit is contained in:
parent
d8da55520f
commit
8089130b7e
2
app.py
2
app.py
@ -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"/>'
|
||||
|
Loading…
x
Reference in New Issue
Block a user