Removes console logs

Signed-off-by: Chris Abraham <cjyabraham@gmail.com>
pull/47314/head
Chris Abraham 2024-07-30 17:55:16 +07:00
parent e04ae67733
commit 7613b3b55b
No known key found for this signature in database
GPG Key ID: 60A2BD1DA7D4B0F0
1 changed files with 0 additions and 2 deletions

View File

@ -90,12 +90,10 @@
const isGoogleBlocked = await checkBlockedSite("https://www.google.com/favicon.ico");
if ( isGoogleBlocked ) {
// Google is blocked.
console.log("Google is blocked")
document.cookie = "can_google=false;" + path + expires
window.renderPageFindSearchResults()
} else {
// Google is not blocked.
console.log("Google is NOT blocked")
document.cookie = "can_google=true;" + path + expires
window.renderGoogleSearchResults()
}