fix: Do not update cached UUIDs from hostnode popup

pull/828/head
Raphaël Vinot 2023-11-06 16:45:37 +01:00
parent 22f0fbd21c
commit c8606ff167
1 changed files with 1 additions and 1 deletions

View File

@ -1057,7 +1057,7 @@ class Lookyloo():
Capture UUID avoids duplicates on the same capture'''
captures_list: Dict[str, List[Tuple[str, str, str, str, str]]] = {'same_url': [], 'different_url': []}
total_captures, details = self.indexing.get_body_hash_captures(blob_hash, url, filter_capture_uuid=capture_uuid, limit=-1,
prefered_uuids=self._captures_index.cached_captures)
prefered_uuids=set(self._captures_index.keys()))
for h_capture_uuid, url_uuid, url_hostname, same_url in details:
cache = self.capture_cache(h_capture_uuid)
if cache and hasattr(cache, 'title'):