Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloperezj committed Sep 19, 2024
1 parent 692e966 commit 9c9b0c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def fetch_indicators_command(client: Client,
if tlp_color:
indicator_obj['fields']['trafficlightprotocol'] = tlp_color

if (indicator_obj.get('gti_threat_score') or 0) >= minimum_score:
if (indicator_obj['fields']['gtithreatscore'] or 0) >= minimum_score:
indicators.append(indicator_obj)
else:
try:
Expand Down

0 comments on commit 9c9b0c7

Please sign in to comment.