pull/2962/head
2dust 2023-01-03 10:52:44 +08:00
parent 8cbf6bfffa
commit 43b96ea4e5
1 changed files with 2 additions and 2 deletions

View File

@ -1463,8 +1463,8 @@ namespace v2rayN.Handler
} }
if (it.configType == EConfigType.VMess || it.configType == EConfigType.VLESS) if (it.configType == EConfigType.VMess || it.configType == EConfigType.VLESS)
{ {
var item2 = LazyConfig.Instance.GetProfileItem(config.indexId); var item2 = LazyConfig.Instance.GetProfileItem(it.indexId);
if (item2 is null || !Utils.IsGuidByParse(item2.id)) if (item2 is null || Utils.IsNullOrEmpty(item2.id) || !Utils.IsGuidByParse(item2.id))
{ {
continue; continue;
} }