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:
|
try:
|
||||||
logger.info(f"Fetching content from URL: {real_url}")
|
logger.info(f"Fetching content from URL: {real_url}")
|
||||||
r = s.get(real_url, timeout=10)
|
r = s.get(real_url, timeout=10)
|
||||||
r.raise_for_status()
|
# r.raise_for_status()
|
||||||
except requests.RequestException as e:
|
except requests.RequestException as e:
|
||||||
logger.error(f"Error fetching the page for video ID '{video_id}': {e}")
|
logger.error(f"Error fetching the page for video ID '{video_id}': {e}")
|
||||||
return None, None
|
return None, None
|
||||||
|
Loading…
x
Reference in New Issue
Block a user