diff options
| author | Noémi Ványi <kvch@users.noreply.github.com> | 2020-12-09 22:48:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-09 22:48:10 +0100 |
| commit | 820b468bfe96f693d60ce06f1e78af51f00deefc (patch) | |
| tree | e87938d67386bb7d0272c14e1902867eeb152676 /searx/engines/currency_convert.py | |
| parent | 42a194898baf96e15edeb9268fbec5ecd4423c09 (diff) | |
| parent | 3a63dfbdd7ff53c2e083915b0dea481a6ea0aaaa (diff) | |
Merge pull request #2373 from kvch/display-https-engines
Display if an engine does not support HTTPS requests
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): |