From a075a5a7a2fcfa9231b1eceaaddd95a159bc7132 Mon Sep 17 00:00:00 2001 From: MMaker Date: Mon, 3 Mar 2025 13:01:26 -0500 Subject: [PATCH] Warning if no OG tags found --- app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.py b/app.py index 1fbf4b2..e9d6295 100644 --- a/app.py +++ b/app.py @@ -331,6 +331,8 @@ def proxy(video_id): cdn_video_url = get_cdn_url(video_id) og_tags = soup.find_all("meta", attrs={"property": True}) + if len(og_tags) == 0: + logger.warning(f"{video_id}: No Open Graph tags found") og_title = None og_description = None for tag in og_tags: