Skip to content

Commit 28b233b

Browse files
committed
fix: 修复 URI 输出
1 parent 44d7252 commit 28b233b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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.19.25",
3+
"version": "2.19.26",
44
"description": "Advanced Subscription Manager for QX, Loon, Surge, Stash and Shadowrocket.",
55
"main": "src/main.js",
66
"scripts": {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default function URI_Producer() {
1212
delete proxy.resolved;
1313
delete proxy['no-resolve'];
1414
for (const key in proxy) {
15-
if (proxy[key] == null || /^_/i.test(key)) {
15+
if (proxy[key] == null) {
1616
delete proxy[key];
1717
}
1818
}

0 commit comments

Comments
 (0)