We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ea2577 commit e7220e3Copy full SHA for e7220e3
web/analysis/views.py
@@ -1462,7 +1462,7 @@ def search_behavior(request, task_id):
1462
for argument in call["arguments"]:
1463
if search_argname and argument["name"] != search_argname:
1464
continue
1465
- if query.search(argument["value"]):
+ if isinstance(argument["value"], (str, bytes)) and query.search(argument["value"]):
1466
process_results.append(call)
1467
break
1468
0 commit comments