mirror of https://github.com/CIRCL/lookyloo
fix: improper concat for sets
parent
aab3851a4c
commit
ae59b59071
|
@ -482,7 +482,7 @@ class CapturesIndex(Mapping):
|
||||||
continue
|
continue
|
||||||
ipasn_entries = {}
|
ipasn_entries = {}
|
||||||
if 'v4' in node.resolved_ips and 'v6' in node.resolved_ips:
|
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:
|
else:
|
||||||
# old format
|
# old format
|
||||||
_all_ips = node.resolved_ips
|
_all_ips = node.resolved_ips
|
||||||
|
|
Loading…
Reference in New Issue