Skip to content

Commit b5a9adb

Browse files
committedMar 23, 2025··
fix(subscribe): fix split host param for vmess share link
Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
1 parent 4701a2c commit b5a9adb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎root/etc/homeproxy/scripts/update_subscriptions.uc

+1-1
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ function parse_uri(uri) {
418418
case 'tcp':
419419
if (uri.net === 'h2' || uri.type === 'http') {
420420
config.transport = 'http';
421-
config.http_host = uri.host ? uri.host.split(',') : null;
421+
config.http_host = uri.host ? split(uri.host, ',') : null;
422422
config.http_path = uri.path;
423423
}
424424
break;

0 commit comments

Comments
 (0)
Please sign in to comment.