diff options
author | Adam Tauber <adam.tauber@balabit.com> | 2016-03-02 11:51:11 +0100 |
---|---|---|
committer | Adam Tauber <adam.tauber@balabit.com> | 2016-03-02 11:52:11 +0100 |
commit | bc81eda64bccbdb24c5f482563cac7ba88ef1027 (patch) | |
tree | bbf925bb484cc2eaaef99d5e79716cc5a493fe03 /searx/webapp.py | |
parent | 308613e586108fd7b713fc2a14f8200a0a781105 (diff) | |
download | searxng-bc81eda64bccbdb24c5f482563cac7ba88ef1027.tar.gz searxng-bc81eda64bccbdb24c5f482563cac7ba88ef1027.zip |
[fix] opensearch image issue - closes #507
Diffstat (limited to 'searx/webapp.py')
-rw-r--r-- | searx/webapp.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 06859b847..665eeef24 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -749,7 +749,8 @@ def opensearch(): ret = render('opensearch.xml', opensearch_method=method, - host=get_base_url()) + host=get_base_url(), + urljoin=urljoin) resp = Response(response=ret, status=200, |