From a31d7d5a9074d15020f0f768c32f79c3a98aef51 Mon Sep 17 00:00:00 2001 From: MMaker Date: Mon, 3 Mar 2025 22:06:15 -0500 Subject: [PATCH] Add extra logging --- app.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index 2d9d9e2..98c8899 100644 --- a/app.py +++ b/app.py @@ -371,7 +371,10 @@ def proxy(video_id): # so in addition to including these when the User Agent is a Twitter bot, # we also include them when the video is too long to download in order to remove the play button. if 'twitterbot' in request_user_agent or not download_allowed: - logger.info(f"{video_id}: Twitterbot detected - adding Twitter tags") + if 'twitterbot' in request_user_agent: + logger.info(f"{video_id}: Twitterbot detected - adding Twitter tags") + if not download_allowed: + logger.info(f"{video_id}: Video too long to download - will not show play button") og_tags_str += f'\n' og_tags_str += '\n' og_tags_str += '\n'