mirror of https://github.com/searxng/searxng.git
[fix] valid https checking
This commit is contained in:
parent
d1e8c2365e
commit
c838492d6d
|
@ -119,7 +119,7 @@ def opensearch():
|
|||
# chrome/chromium only supports HTTP GET....
|
||||
if request.headers.get('User-Agent', '').lower().find('webkit') >= 0:
|
||||
method = 'get'
|
||||
if request.headers.get('Host', '').find('https://'):
|
||||
if request.is_secure:
|
||||
scheme = 'https'
|
||||
ret = opensearch_xml.format(method=method, host=url_for('index', _external=True, _scheme=scheme))
|
||||
resp = Response(response=ret,
|
||||
|
|
Loading…
Reference in New Issue