fix: Properly search hash in embedded resources

pull/767/head
Raphaël Vinot 2023-08-24 14:37:03 +02:00
parent 30bc728a47
commit 8b316ad185
1 changed files with 1 additions and 1 deletions

View File

@ -929,7 +929,7 @@ class Lookyloo():
body_content = urlnode.body
else:
# The hash is an embedded resource
for _, blobs in urlnode.body_hash.embedded_ressources.items():
for _, blobs in urlnode.embedded_ressources.items():
for h, b in blobs:
if h == body_hash:
body_content = b