Skip to content

Commit

Permalink
[misp] Fix negative filter on organizations
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelHassine committed May 19, 2023
1 parent 67d3909 commit ec8e39b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external-import/misp/src/misp.py
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ def process_events(self, work_id, events):
continue
if (
import_owner_orgs_not is not None
and event["Event"]["Org"]["name"] not in import_owner_orgs_not
and event["Event"]["Org"]["name"] in import_owner_orgs_not
):
self.helper.log_info(
"Event owner organization "
Expand Down

0 comments on commit ec8e39b

Please sign in to comment.