Skip to content

Commit 6328107

Browse files
Bugfix: Dynamic /route?url is no longer needed
1 parent 2cd6ad4 commit 6328107

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/public/js/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ form.addEventListener("submit", (event) => {
2626
handoffToTABS(__uv$config.prefix + __uv$config.encodeUrl(url));
2727
break;
2828
case "dynamic":
29-
handoffToTABS(__dynam$ic.prefix + "route/?url=" + __dynam$ic.encodeUrl(url));
29+
handoffToTABS(__dynam$ic.prefix + __dynam$ic.encodeUrl(url));
3030
break;
3131
default:
3232
handoffToTABS(__uv$config.prefix + __uv$config.encodeUrl(url));
@@ -37,7 +37,7 @@ function proxyOtherStuff(url) {
3737
case "uv":
3838
return __uv$config.prefix + __uv$config.encodeUrl(url);
3939
case "dynamic":
40-
return __dynam$ic.prefix + "route/?url=" + __dynam$ic.encodeUrl(url);
40+
return __dynam$ic.prefix + __dynam$ic.encodeUrl(url);
4141
default:
4242
return __uv$config.prefix + __uv$config.encodeUrl(url);
4343
}

0 commit comments

Comments
 (0)