ソースを参照

[fix] produce valid urls if scheme is missing

Adam Tauber 7 年 前
コミット
1972a044a3
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      searx/engines/xpath.py

+ 1
- 1
searx/engines/xpath.py ファイルの表示

@@ -53,7 +53,7 @@ def extract_url(xpath_results, search_url):
53 53
     if url.startswith('//'):
54 54
         # add http or https to this kind of url //example.com/
55 55
         parsed_search_url = urlparse(search_url)
56
-        url = parsed_search_url.scheme + url
56
+        url = u'{0}:{1}'.format(parsed_search_url.scheme, url)
57 57
     elif url.startswith('/'):
58 58
         # fix relative url to the search engine
59 59
         url = urljoin(search_url, url)