Skip to content

Commit

Permalink
FIX: Do not overwrite feed.documentation if present.
Browse files Browse the repository at this point in the history
  • Loading branch information
gethvi authored and aaronkaplan committed Mar 1, 2024
1 parent 7d2012d commit 5a0cd23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intelmq/bots/parsers/shadowserver/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def parse_line(self, row, report):
event.add('feed.name', self.feedname, overwrite=self.overwrite)

# set feed.documentation to a report url
event.add('feed.documentation', conf.get('url'))
event.add('feed.documentation', conf.get('url'), overwrite=False)

extra = {} # The Json-Object which will be populated with the
# fields that could not be added to the standard intelmq fields
Expand Down

0 comments on commit 5a0cd23

Please sign in to comment.