From 7f3cb2b191d6a932182544a74085dbf7c7642744 Mon Sep 17 00:00:00 2001 From: xream Date: Sun, 5 May 2024 02:11:50 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=BD=93=E6=97=A0=E6=8F=92=E4=BB=B6?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E6=97=B6,=20=E5=8E=BB=E9=99=A4=20SS=20URI=20?= =?UTF-8?q?=E8=BE=93=E5=87=BA=E4=B8=AD=E7=9A=84=20/=20=E4=BB=A5=E5=85=BC?= =?UTF-8?q?=E5=AE=B9=E9=83=A8=E5=88=86=E5=AE=A2=E6=88=B7=E7=AB=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/package.json | 2 +- backend/src/core/proxy-utils/producers/uri.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/package.json b/backend/package.json index db767d2..3ed92a6 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "sub-store", - "version": "2.14.305", + "version": "2.14.306", "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/uri.js b/backend/src/core/proxy-utils/producers/uri.js index 6ef95de..85d5787 100644 --- a/backend/src/core/proxy-utils/producers/uri.js +++ b/backend/src/core/proxy-utils/producers/uri.js @@ -26,7 +26,7 @@ export default function URI_Producer() { const userinfo = `${proxy.cipher}:${proxy.password}`; result = `ss://${Base64.encode(userinfo)}@${proxy.server}:${ proxy.port - }/`; + }${proxy.plugin ? '/' : ''}`; if (proxy.plugin) { result += '?plugin='; const opts = proxy['plugin-opts'];