Skip to content

Commit

Permalink
fixed deployment issue of www.netptop.com
Browse files Browse the repository at this point in the history
  • Loading branch information
netptop committed Jul 3, 2024
1 parent 79ca193 commit 795660d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cf_www.netptop.com_worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,14 +300,14 @@ const someHTML = `
function search(query) {
if (activeEngine === 'google_ipv4') {
window.open(\`https://ipv4.google.com/search?q=${encodeURIComponent(query)}\`, '_blank');
window.open('https://ipv4.google.com/search?q=' + encodeURIComponent(query), '_blank');
} else if (activeEngine === 'google_ipv6') {
window.open(\`https://ipv6.google.com/search?q=${encodeURIComponent(query)}\`, '_blank');
window.open('https://ipv6.google.com/search?q=' + encodeURIComponent(query), '_blank');
} else if (activeEngine === 'duckduckgo') {
window.open(\`https://duckduckgo.com/?kae=c&kp=-2&kz=-1&kav=1&kn=1&k1=-1&kk=-1&kaj=m&kay=b&kak=-1&kax=-1&kap=-1&kaq=-1&kao=-1&kau=-1&ko=1&kpsb=-1&kbg=-1&kbd=-1&kbc=1&kw=w&kt=n&ka=n&k18=1&q=${encodeURIComponent(query)}\`, '_blank');
window.open('https://duckduckgo.com/?kae=c&kp=-2&kz=-1&kav=1&kn=1&k1=-1&kk=-1&kaj=m&kay=b&kak=-1&kax=-1&kap=-1&kaq=-1&kao=-1&kau=-1&ko=1&kpsb=-1&kbg=-1&kbd=-1&kbc=1&kw=w&kt=n&ka=n&k18=1&q=' + encodeURIComponent(query), '_blank');
} else if (activeEngine === 'bing') {
window.open(\`https://www.bing.com/search?q=${encodeURIComponent(query)}\`, '_blank');
}
window.open('https://www.bing.com/search?q=' + encodeURIComponent(query), '_blank');
}
}
</script>
</body>
Expand Down

0 comments on commit 795660d

Please sign in to comment.