Skip to content

Commit b6d74f4

Browse files
committed
Fix dnstwist script
1 parent b55e1ca commit b6d74f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/build_findings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ function diagHasLivePath(diag) {
127127
if (REPORT_ONLY_LIVE && !live) continue;
128128

129129
// scoring + reasons
130-
let score = 0; const reasons = [];
130+
let score = 0; let reasons = [];
131131
if (img != null && img >= phashThr) { score+=2; reasons.push(`img>=${phashThr} (${img}%)`); }
132132
if (html != null && html >= lshThr) { score+=1; reasons.push(`html>=${lshThr} (${html}%)`); }
133133
if (nameClose(dom)) { score+=2; reasons.push(`name-edit≤${NAME_EDIT_MAX}`); }

0 commit comments

Comments
 (0)