mirror of https://github.com/2dust/v2rayN
bug fix
parent
8cbf6bfffa
commit
43b96ea4e5
|
@ -1463,8 +1463,8 @@ namespace v2rayN.Handler
|
|||
}
|
||||
if (it.configType == EConfigType.VMess || it.configType == EConfigType.VLESS)
|
||||
{
|
||||
var item2 = LazyConfig.Instance.GetProfileItem(config.indexId);
|
||||
if (item2 is null || !Utils.IsGuidByParse(item2.id))
|
||||
var item2 = LazyConfig.Instance.GetProfileItem(it.indexId);
|
||||
if (item2 is null || Utils.IsNullOrEmpty(item2.id) || !Utils.IsGuidByParse(item2.id))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue