From ed1c78d92300948d9692f411e97db330de550726 Mon Sep 17 00:00:00 2001 From: yujunqiang Date: Wed, 15 Nov 2017 21:31:27 +0800 Subject: [PATCH] fix bug: TypeError: set(['bing', 'google']) is not JSON serializable, when curl 'http://127.0.0.1:8888/?q=xxxxxxxx&categories=general&format=json' --- searx/webapp.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/searx/webapp.py b/searx/webapp.py index f8174732..371fb2a3 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -541,7 +541,8 @@ def index(): 'corrections': list(result_container.corrections), 'infoboxes': result_container.infoboxes, 'suggestions': list(result_container.suggestions), - 'unresponsive_engines': list(result_container.unresponsive_engines)}), + 'unresponsive_engines': list(result_container.unresponsive_engines)}, + default=lambda item: list(item) if isinstance(item, set) else item), mimetype='application/json') elif output_format == 'csv': csv = UnicodeWriter(StringIO())