mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-03-11 08:54:34 +00:00
Fix 'anon-view' KeyError (#724)
This commit is contained in:
parent
9317d9217f
commit
ca80bb0caa
1 changed files with 1 additions and 1 deletions
|
|
@ -209,7 +209,7 @@ def append_anon_view(result: BeautifulSoup, config: Config) -> None:
|
|||
translation = current_app.config['TRANSLATIONS'][
|
||||
config.get_localization_lang()
|
||||
]
|
||||
av_link.string = f'{translation["anon-view"]}'
|
||||
av_link.string = f'{translation["config-anon-view"]}'
|
||||
av_link['class'] = 'anon-view'
|
||||
result.append(av_link)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue