diff options
author | Noémi Ványi <sitbackandwait@gmail.com> | 2020-12-09 17:33:18 +0100 |
---|---|---|
committer | Noémi Ványi <sitbackandwait@gmail.com> | 2020-12-09 20:49:54 +0100 |
commit | 3a63dfbdd7ff53c2e083915b0dea481a6ea0aaaa (patch) | |
tree | e87938d67386bb7d0272c14e1902867eeb152676 /searx/engines/currency_convert.py | |
parent | 42a194898baf96e15edeb9268fbec5ecd4423c09 (diff) | |
download | searxng-3a63dfbdd7ff53c2e083915b0dea481a6ea0aaaa.tar.gz searxng-3a63dfbdd7ff53c2e083915b0dea481a6ea0aaaa.zip |
display if an engine does not support https
Closes #302
Diffstat (limited to 'searx/engines/currency_convert.py')
-rw-r--r-- | searx/engines/currency_convert.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/searx/engines/currency_convert.py b/searx/engines/currency_convert.py index f41c135b9..87e21d0af 100644 --- a/searx/engines/currency_convert.py +++ b/searx/engines/currency_convert.py @@ -9,6 +9,7 @@ url = 'https://duckduckgo.com/js/spice/currency/1/{0}/{1}' weight = 100 parser_re = re.compile('.*?(\\d+(?:\\.\\d+)?) ([^.0-9]+) (?:in|to) ([^.0-9]+)', re.I) +https_support = True def normalize_name(name): |