[fix] valid https checking

This commit is contained in:
asciimoo 2013-10-30 23:01:58 +01:00
parent d1e8c2365e
commit c838492d6d
1 changed files with 1 additions and 1 deletions

View File

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