diff --git a/backend/package.json b/backend/package.json index 90b0403..4d89865 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "sub-store", - "version": "2.19.6", + "version": "2.19.7", "description": "Advanced Subscription Manager for QX, Loon, Surge, Stash and Shadowrocket.", "main": "src/main.js", "scripts": { diff --git a/backend/src/core/proxy-utils/parsers/index.js b/backend/src/core/proxy-utils/parsers/index.js index 436eb4d..67cf682 100644 --- a/backend/src/core/proxy-utils/parsers/index.js +++ b/backend/src/core/proxy-utils/parsers/index.js @@ -634,6 +634,9 @@ function URI_VLESS() { } if (!proxy.network && isShadowrocket && params.obfs) { proxy.network = params.obfs; + if (['none'].includes(proxy.network)) { + proxy.network = 'tcp'; + } } if (['websocket'].includes(proxy.network)) { proxy.network = 'ws';