From ae59b590719f7927aae1bbf08f75d92b94344914 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Mon, 16 Jan 2023 15:16:40 +0100 Subject: [PATCH] fix: improper concat for sets --- lookyloo/capturecache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lookyloo/capturecache.py b/lookyloo/capturecache.py index d4b94be5..c850359d 100644 --- a/lookyloo/capturecache.py +++ b/lookyloo/capturecache.py @@ -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