From 2ee6508f866545ba283a2e20983b95a6c28a6cd1 Mon Sep 17 00:00:00 2001 From: Kevin R Date: Sun, 20 Mar 2022 00:41:15 +0100 Subject: [PATCH] Added error message on wrong hash --- clearurls.js | 1 + 1 file changed, 1 insertion(+) diff --git a/clearurls.js b/clearurls.js index cd34fba..42f4da6 100644 --- a/clearurls.js +++ b/clearurls.js @@ -307,6 +307,7 @@ function start() { storeHashStatus(2); } else { storeHashStatus(3); + console.error("The hash does not match. Expected `" + result.hash + "` got `" + dataHash.trim() + "`"); } storage.ClearURLsData = JSON.parse(storage.ClearURLsData); toObject(storage.ClearURLsData);