mirror of https://github.com/searxng/searxng.git
Fixes #271
The opensearch method is now the method set in the preferences. As before, POST by default and GET for Chrome/Chromium which doesn't handle POST
This commit is contained in:
parent
22c4195c89
commit
7004de6aa7
|
@ -687,6 +687,10 @@ Disallow: /preferences
|
||||||
@app.route('/opensearch.xml', methods=['GET'])
|
@app.route('/opensearch.xml', methods=['GET'])
|
||||||
def opensearch():
|
def opensearch():
|
||||||
method = 'post'
|
method = 'post'
|
||||||
|
|
||||||
|
if request.cookies.get('method', 'POST') == 'GET':
|
||||||
|
method = 'get'
|
||||||
|
|
||||||
# chrome/chromium only supports HTTP GET....
|
# chrome/chromium only supports HTTP GET....
|
||||||
if request.headers.get('User-Agent', '').lower().find('webkit') >= 0:
|
if request.headers.get('User-Agent', '').lower().find('webkit') >= 0:
|
||||||
method = 'get'
|
method = 'get'
|
||||||
|
|
Loading…
Reference in New Issue