mirror of
https://github.com/benbusby/whoogle-search.git
synced 2025-07-09 03:04:13 -04:00
Attempt to query on error condition and print trace (#1131)
This commit is contained in:
parent
f18bf07ac3
commit
80e41e6b44
@ -610,6 +610,15 @@ def internal_error(e):
|
||||
else:
|
||||
query = request.args.get('q')
|
||||
|
||||
# Attempt to parse the query
|
||||
try:
|
||||
search_util = Search(request, g.user_config, g.session_key)
|
||||
query = search_util.new_search_query()
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
print(traceback.format_exc(), file=sys.stderr)
|
||||
|
||||
localization_lang = g.user_config.get_localization_lang()
|
||||
translation = app.config['TRANSLATIONS'][localization_lang]
|
||||
return render_template(
|
||||
|
Loading…
x
Reference in New Issue
Block a user