From 8089130b7e53107a931b1a2d4f329051b4f56305 Mon Sep 17 00:00:00 2001 From: MMaker Date: Tue, 4 Mar 2025 10:23:38 -0500 Subject: [PATCH] Only log "too long" if not a Twitterbot --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 8e64f97..a41cd68 100644 --- a/app.py +++ b/app.py @@ -368,12 +368,12 @@ def proxy(video_id): og_tags_str += f'\n' # Discord seems to ignore video URLs when Twitter meta tags are present, - # so in addition to including these when the User Agent is a Twitter bot, + # so in addition to including these when the User Agent is a Twitterbot, # 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: 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' og_tags_str += '\n'