diff --git a/backend/package.json b/backend/package.json index 89c9e928c..d514c11aa 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "sub-store", - "version": "2.14.450", + "version": "2.14.451", "description": "Advanced Subscription Manager for QX, Loon, Surge, Stash and ShadowRocket.", "main": "src/main.js", "scripts": { diff --git a/backend/src/core/proxy-utils/producers/sing-box.js b/backend/src/core/proxy-utils/producers/sing-box.js index ecc5fdef3..3b4f9a229 100644 --- a/backend/src/core/proxy-utils/producers/sing-box.js +++ b/backend/src/core/proxy-utils/producers/sing-box.js @@ -214,7 +214,11 @@ const tlsParser = (proxy, parsedProxy) => { proxy['reality-opts']['short-id']; parsedProxy.tls.utls = { enabled: true }; } - if (proxy['client-fingerprint'] && proxy['client-fingerprint'] !== '') + if ( + !['hysteria', 'hysteria2', 'tuic'].includes(proxy.type) && + proxy['client-fingerprint'] && + proxy['client-fingerprint'] !== '' + ) parsedProxy.tls.utls = { enabled: true, fingerprint: proxy['client-fingerprint'],