mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2024-11-16 03:32:36 +08:00
修正错误逻辑
修正算法
This commit is contained in:
parent
56edc1deaf
commit
c9daafd5f7
|
@ -79,13 +79,16 @@ export const useRenderList = (mode: string) => {
|
|||
if (hiddenInvalidNetwork) {
|
||||
let proxys = group.all.filter((item) => {
|
||||
if (item.all) {
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
if (item.history) {
|
||||
const history = item.history;
|
||||
let min = Math.min(3, history.length);
|
||||
let recentHistory = history.slice(0, min);
|
||||
let recentHistory = history.slice(
|
||||
history.length - min,
|
||||
history.length
|
||||
);
|
||||
let hasInvalidNetwork =
|
||||
recentHistory.filter((item) => item.delay == 0).length > 0;
|
||||
if (hasInvalidNetwork) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user