fix: improper concat for sets

pull/573/head
Raphaël Vinot 2023-01-16 15:16:40 +01:00
parent aab3851a4c
commit ae59b59071
1 changed files with 1 additions and 1 deletions

View File

@ -482,7 +482,7 @@ class CapturesIndex(Mapping):
continue
ipasn_entries = {}
if 'v4' in node.resolved_ips and 'v6' in node.resolved_ips:
_all_ips = node.resolved_ips['v4'] + node.resolved_ips['v6']
_all_ips = node.resolved_ips['v4'] | node.resolved_ips['v6']
else:
# old format
_all_ips = node.resolved_ips