fix: VMess URI 输入传输层为 HTTP 时, path 默认为 /

This commit is contained in:
xream
2024-05-30 14:28:02 +08:00
parent 78ac733ed9
commit 4c65f261ba
2 changed files with 3 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "sub-store",
"version": "2.14.323",
"version": "2.14.324",
"description": "Advanced Subscription Manager for QX, Loon, Surge, Stash and ShadowRocket.",
"main": "src/main.js",
"scripts": {

View File

@@ -340,6 +340,8 @@ function URI_VMess() {
transportPath = Array.isArray(transportPath)
? transportPath[0]
: transportPath;
} else {
transportPath = '/';
}
}
if (transportPath || transportHost) {