Skip to content

Commit

Permalink
fix: critical issue with provider enrichments (#1710)
Browse files Browse the repository at this point in the history
  • Loading branch information
talboren authored Aug 23, 2024
1 parent 086690c commit fb3e4b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keep/providers/base/base_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def _enrich_alert(self, enrichments, results):
for enrichment in enrichments:
try:
value = enrichment["value"]
disposable = bool(enrichment.get("disposable", "false"))
disposable = bool(enrichment.get("disposable", False))
if value.startswith("results."):
val = enrichment["value"].replace("results.", "")
parts = val.split(".")
Expand Down

0 comments on commit fb3e4b9

Please sign in to comment.