Skip to content

Commit 98d2344

Browse files
committed
feat: Stash 支持 VLESS XHTTP, Mieru
1 parent 066be11 commit 98d2344

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sub-store",
3-
"version": "2.36.35",
3+
"version": "2.36.37",
44
"description": "Advanced Subscription Manager for QX, Loon, Surge, Stash and Shadowrocket.",
55
"main": "src/main.js",
66
"packageManager": "pnpm@11.0.9",

backend/src/core/proxy-utils/producers/stash.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ export default function Stash_Producer() {
3737
'tailscale',
3838
'trusttunnel',
3939
'masque',
40+
'mieru',
4041
].includes(proxy.type) ||
4142
(proxy.type === 'ss' &&
4243
![
@@ -79,7 +80,10 @@ export default function Stash_Producer() {
7980
proxy['reality-opts']))
8081
) {
8182
return false;
82-
} else if (['xhttp'].includes(proxy.network)) {
83+
} else if (
84+
!['vless'].includes(proxy.type) &&
85+
['xhttp'].includes(proxy.network)
86+
) {
8387
return false;
8488
} else if (
8589
proxy.encryption &&

0 commit comments

Comments
 (0)