summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--searx/data/currencies.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/data/currencies.py b/searx/data/currencies.py
index a4f2901f0..0721037a1 100644
--- a/searx/data/currencies.py
+++ b/searx/data/currencies.py
@@ -51,5 +51,5 @@ class CurrenciesDB:
def iso4217_to_name(self, iso4217, language):
self.init()
- iso4217_languages: dict = self.cache.get(key=iso4217, default={}, ctx=self.ctx_names)
+ iso4217_languages: dict = self.cache.get(key=iso4217, default={}, ctx=self.ctx_iso4217)
return iso4217_languages.get(language, iso4217)