소스 검색

[fix] valid https checking

asciimoo 11 년 전
부모
커밋
c838492d6d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      searx/webapp.py

+ 1
- 1
searx/webapp.py 파일 보기

@@ -119,7 +119,7 @@ def opensearch():
119 119
     # chrome/chromium only supports HTTP GET....
120 120
     if request.headers.get('User-Agent', '').lower().find('webkit') >= 0:
121 121
         method = 'get'
122
-    if request.headers.get('Host', '').find('https://'):
122
+    if request.is_secure:
123 123
         scheme = 'https'
124 124
     ret = opensearch_xml.format(method=method, host=url_for('index', _external=True, _scheme=scheme))
125 125
     resp = Response(response=ret,