fix: disable SSL verification for RSS parsing to support custom domains like netflixtechblog

This commit is contained in:
Nubenetes Bot
2026-06-01 17:00:05 +02:00
parent d7b4f54851
commit f46458340c

View File

@@ -24,7 +24,7 @@ class RSSDataExtractor:
for url in feeds:
self.log_audit("Discovery", None, f"Parsing feed: {url}")
try:
async with httpx.AsyncClient(follow_redirects=True, timeout=30.0) as client:
async with httpx.AsyncClient(follow_redirects=True, timeout=30.0, verify=False) as client:
headers = {'User-Agent': ua.random}
response = await client.get(url, headers=headers)
response.raise_for_status()