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'