Remove raise for status check temporarily
This commit is contained in:
parent
1802eeffe3
commit
1ce10dfae4
2
app.py
2
app.py
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user