We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
th.bing.com
1 parent 922807e commit 3da7111Copy full SHA for 3da7111
cloudflare/worker.js
@@ -463,7 +463,7 @@ export default {
463
if (currentUrl.pathname.startsWith('/sydney')) {
464
targetUrl = new URL(SYDNEY_ORIGIN + currentUrl.pathname + currentUrl.search);
465
} else if (currentUrl.pathname.startsWith('/th')) {
466
- targetUrl = new URL(BING_SOURCE_ORIGIN + currentUrl.pathname + currentUrl.search);
+ targetUrl = new URL(BING_SOURCE_ORIGIN + currentUrl.pathname.replaceAll('/th/', '/') + currentUrl.search);
467
} else if (currentUrl.pathname.startsWith('/edgesvc')) {
468
targetUrl = new URL(EDGE_ORIGIN + currentUrl.pathname + currentUrl.search);
469
} else if (currentUrl.pathname.startsWith('/opaluqu')) {
0 commit comments