You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Combines the two installation requests (org and user) into one because
`/org/{org}` can also be accessed at `/users/{org}`.
---------
Co-authored-by: Gregor Martynus <[email protected]>
Copy file name to clipboardExpand all lines: dist/post.cjs
+20-7Lines changed: 20 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -560,10 +560,10 @@ var require_proxy = __commonJS({
560
560
})();
561
561
if (proxyVar) {
562
562
try {
563
-
return new URL(proxyVar);
563
+
return new DecodedURL(proxyVar);
564
564
} catch (_a) {
565
565
if (!proxyVar.startsWith("http://") && !proxyVar.startsWith("https://"))
566
-
return new URL(`http://${proxyVar}`);
566
+
return new DecodedURL(`http://${proxyVar}`);
567
567
}
568
568
} else {
569
569
return void 0;
@@ -606,6 +606,19 @@ var require_proxy = __commonJS({
0 commit comments