Skip to content

Commit a214ec4

Browse files
committed
fix
1 parent 2c37dae commit a214ec4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • backend/open_webui/retrieval/web

backend/open_webui/retrieval/web/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ async def _safe_process_url(self, url: str) -> bool:
174174

175175
def _safe_process_url_sync(self, url: str) -> bool:
176176
"""Synchronous version of safety checks."""
177-
if self.verify_ssl and not self._verify_ssl_cert(url):
177+
if self.verify_ssl and not verify_ssl_cert(url):
178178
raise ValueError(f"SSL certificate verification failed for {url}")
179179
self._sync_wait_for_rate_limit()
180180
return True

0 commit comments

Comments
 (0)