瀏覽代碼

fix bug: TypeError: set(['bing', 'google']) is not JSON serializable, when curl 'http://127.0.0.1:8888/?q=xxxxxxxx&categories=general&format=json'

yujunqiang 7 年之前
父節點
當前提交
ed1c78d923
共有 1 個檔案被更改,包括 2 行新增1 行删除
  1. 2
    1
      searx/webapp.py

+ 2
- 1
searx/webapp.py 查看文件

@@ -541,7 +541,8 @@ def index():
541 541
                                     'corrections': list(result_container.corrections),
542 542
                                     'infoboxes': result_container.infoboxes,
543 543
                                     'suggestions': list(result_container.suggestions),
544
-                                    'unresponsive_engines': list(result_container.unresponsive_engines)}),
544
+                                    'unresponsive_engines': list(result_container.unresponsive_engines)},
545
+                                   default=lambda item: list(item) if isinstance(item, set) else item),
545 546
                         mimetype='application/json')
546 547
     elif output_format == 'csv':
547 548
         csv = UnicodeWriter(StringIO())