fix: Use proper parameter to trigger the request in search_galaxy_clusters

pull/955/head
Raphaël Vinot 2023-03-17 14:02:29 +01:00
parent 9dd643ca2c
commit a40d91666b
1 changed files with 1 additions and 1 deletions

View File

@ -1491,7 +1491,7 @@ class PyMISP:
kw_params = {"context": context}
if searchall:
kw_params["searchall"] = searchall
r = self._prepare_request('POST', f"galaxy_clusters/index/{galaxy_id}", kw_params=kw_params)
r = self._prepare_request('POST', f"galaxy_clusters/index/{galaxy_id}", data=kw_params)
clusters_j = self._check_json_response(r)
if not (self.global_pythonify or pythonify) or 'errors' in clusters_j:
return clusters_j