fix: 修复 SurgeMac ShadowsocksR obfs-param

This commit is contained in:
xream
2024-08-28 14:50:25 +08:00
parent 5fce41347a
commit 11db3cfdac
3 changed files with 9 additions and 6 deletions

View File

@@ -158,7 +158,7 @@ function URI_SSR() {
for (const item of line) {
let [key, val] = item.split('=');
val = val.trim();
if (val.length > 0) {
if (val.length > 0 && val !== '(null)') {
other_params[key] = val;
}
}