mirror of https://github.com/2dust/v2rayN
Fix GetListNetworkServices
parent
4a7bafd011
commit
aae5906311
|
@ -93,8 +93,9 @@
|
||||||
{
|
{
|
||||||
return LstInterface;
|
return LstInterface;
|
||||||
}
|
}
|
||||||
var lst = services.Split(Environment.NewLine);
|
|
||||||
return lst.Length > 0 ? LstInterface.Intersect(lst).ToList() : LstInterface;
|
var lst = services.Split(Environment.NewLine).Where(t => t.Length > 0 && t.Contains('*') == false);
|
||||||
|
return lst.ToList();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue