Skip to content

Commit

Permalink
fix: filter for loadbalance (#881)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zephyruso authored Jul 30, 2024
1 parent 26c2cfe commit faf7a7e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/signals/proxies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,9 @@ export const useProxies = () => {
}

return (
['direct', 'reject'].includes(proxyNode.type.toLowerCase()) ||
!!proxyNode.now
['direct', 'reject', 'loadbalance'].includes(
proxyNode.type.toLowerCase(),
) || !!proxyNode.now
)
}

Expand Down

0 comments on commit faf7a7e

Please sign in to comment.