Remove raise for status check temporarily

This commit is contained in:
MMaker 2025-02-27 06:58:15 -05:00
parent 1802eeffe3
commit 1ce10dfae4
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

2
app.py
View File

@ -192,7 +192,7 @@ def get_data(video_id, real_url):
try:
logger.info(f"Fetching content from URL: {real_url}")
r = s.get(real_url, timeout=10)
r.raise_for_status()
# r.raise_for_status()
except requests.RequestException as e:
logger.error(f"Error fetching the page for video ID '{video_id}': {e}")
return None, None