mirror of
				https://github.com/2dust/v2rayN.git
				synced 2025-11-04 06:22:52 +00:00 
			
		
		
		
	bug fix
This commit is contained in:
		
							parent
							
								
									8cbf6bfffa
								
							
						
					
					
						commit
						43b96ea4e5
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -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 a new issue