Skip to content

Commit

Permalink
fix: 修复域名解析
Browse files Browse the repository at this point in the history
  • Loading branch information
xream committed Feb 5, 2024
1 parent df50561 commit 199c5fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sub-store",
"version": "2.14.207",
"version": "2.14.208",
"description": "Advanced Subscription Manager for QX, Loon, Surge, Stash and ShadowRocket.",
"main": "src/main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion backend/src/core/proxy-utils/processors/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ function ResolveDomainOperator({ provider, type, filter }) {

return proxies.filter((p) => {
if (filter === 'removeFailed') {
return p['no-resolve'] || p.resolved;
return isIP(p.server) || p['no-resolve'] || p.resolved;
} else if (filter === 'IPOnly') {
return isIP(p.server);
} else if (filter === 'IPv4Only') {
Expand Down

0 comments on commit 199c5fb

Please sign in to comment.