From 8391f8a050cc672bc5a877d34ceac1689f929f0a Mon Sep 17 00:00:00 2001 From: Konrad Dzwinel Date: Mon, 27 Sep 2021 13:06:52 +0200 Subject: [PATCH] Fix undefined --- privacy-protections/https-loop-protection/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/privacy-protections/https-loop-protection/main.js b/privacy-protections/https-loop-protection/main.js index b946172..e15cc8c 100644 --- a/privacy-protections/https-loop-protection/main.js +++ b/privacy-protections/https-loop-protection/main.js @@ -101,7 +101,7 @@ function runTests () { updateSummary(); }); } else { - valueSpan.innerHTML = resultToHTML(data); + valueSpan.innerHTML = resultToHTML(result); resultObj.value = result || null; } } catch (e) {