We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c37dae commit a214ec4Copy full SHA for a214ec4
1 file changed
backend/open_webui/retrieval/web/utils.py
@@ -174,7 +174,7 @@ async def _safe_process_url(self, url: str) -> bool:
174
175
def _safe_process_url_sync(self, url: str) -> bool:
176
"""Synchronous version of safety checks."""
177
- if self.verify_ssl and not self._verify_ssl_cert(url):
+ if self.verify_ssl and not verify_ssl_cert(url):
178
raise ValueError(f"SSL certificate verification failed for {url}")
179
self._sync_wait_for_rate_limit()
180
return True
0 commit comments