We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
使用quake api查询部分域名时会报以下错误
测试发现似乎是quake api有时候返回的data里可能出现不存在service.http.title这个字段导致的
service.http.title
文件路径:
Plugins\infoGather\WebspaceSearchEngine\quakeApi.py
相关代码:
if 'http' in service.keys(): http = service['http'] host = http['host'] title = http['title'] # 此处为报错的第62行,由于返回数据里可能没有title这个字段导致报错
经测试使用dict get方法后即可正常运行,建议改成以下形式:
if 'http' in service.keys(): http = service['http'] host = http['host'] title = http.get('title','not exist')
The text was updated successfully, but these errors were encountered:
感谢师傅反馈,已修复
Sorry, something went wrong.
感谢,师傅
No branches or pull requests
使用quake api查询部分域名时会报以下错误
测试发现似乎是quake api有时候返回的data里可能出现不存在
service.http.title
这个字段导致的文件路径:
相关代码:
经测试使用dict get方法后即可正常运行,建议改成以下形式:
The text was updated successfully, but these errors were encountered: