Skip to content

Commit f181614

Browse files
committed
change url
1 parent 4fa9c97 commit f181614

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

browser_plugin/mozilla/popup.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,25 +42,25 @@ function displayResults(data) {
4242
statusDiv.style.color = "white";
4343
statusDiv.textContent = `Status: ${data.status}`;
4444
conclusionDiv.textContent = data.conclusion;
45-
detailsDiv.innerHTML = `<a class="big-txt" href="https://fraud-free-webapp.vercel.app/detail/${data.url}" target="_blank">Details</a>`;
45+
detailsDiv.innerHTML = `<a class="big-txt" href="https://fraud-free.vercel.app/detail/${data.url}" target="_blank">Details</a>`;
4646
} else if (data.status === "Ok") {
4747
statusDiv.style.backgroundColor = "blue";
4848
statusDiv.style.color = "white";
4949
statusDiv.textContent = `Status: ${data.status}`;
5050
conclusionDiv.textContent = "This website is safe, but some issues were reported. Please proceed with caution.";
51-
detailsDiv.innerHTML = `<a class="big-txt" href="https://fraud-free-webapp.vercel.app/detail/${data.url}" target="_blank">Details</a>`;
51+
detailsDiv.innerHTML = `<a class="big-txt" href="https://fraud-free.vercel.app/detail/${data.url}" target="_blank">Details</a>`;
5252
} else if (data.status === "Warning") {
5353
statusDiv.style.backgroundColor = "blue";
5454
statusDiv.style.color = "white";
5555
statusDiv.textContent = `Status: ${data.status}`;
5656
conclusionDiv.textContent = "This website is not safe, issues were reported. Please proceed with caution.";
57-
detailsDiv.innerHTML = `<a class="big-txt" href="https://fraud-free-webapp.vercel.app/detail/${data.url}" target="_blank">Details</a>`;
57+
detailsDiv.innerHTML = `<a class="big-txt" href="https://fraud-free.vercel.app/detail/${data.url}" target="_blank">Details</a>`;
5858
} else {
5959
statusDiv.style.backgroundColor = "red";
6060
statusDiv.style.color = "white";
6161
statusDiv.textContent = `Status: ${data.status}`;
6262
conclusionDiv.textContent = "This website may not be safe. Avoid.";
63-
detailsDiv.innerHTML = `<a class="big-txt" href="https://fraud-free-webapp.vercel.app/detail/${data.url}" target="_blank">details</a>`;
63+
detailsDiv.innerHTML = `<a class="big-txt" href="https://fraud-free.vercel.app/detail/${data.url}" target="_blank">details</a>`;
6464
}
6565
}
6666

0 commit comments

Comments
 (0)