浏览代码

[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,