Pārlūkot izejas kodu

xpath engine: bug fix

dalf 11 gadus atpakaļ
vecāks
revīzija
664c039b38
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1
    1
      searx/engines/xpath.py

+ 1
- 1
searx/engines/xpath.py Parādīt failu

@@ -28,7 +28,7 @@ def extract_url(xpath_results):
28 28
             url = xpath_results[0].attrib.get('href')
29 29
     else:
30 30
         url = xpath_results.attrib.get('href')
31
-    if not url.startswith('http://') or not url.startswith('https://'):
31
+    if not url.startswith('http://') and not url.startswith('https://'):
32 32
         url = 'http://'+url
33 33
     parsed_url = urlparse(url)
34 34
     if not parsed_url.netloc: