mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	fixes #353 - Path not found stopping library scan
This commit is contained in:
		
							parent
							
								
									92cd71143d
								
							
						
					
					
						commit
						db607a618b
					
				@ -537,13 +537,16 @@ namespace MediaBrowser.Server.Implementations.Library
 | 
			
		||||
            {
 | 
			
		||||
                try
 | 
			
		||||
                {
 | 
			
		||||
                    var item = ResolvePath(f, parent) as T;
 | 
			
		||||
 | 
			
		||||
                    if (item != null)
 | 
			
		||||
                    if (f.Exists)
 | 
			
		||||
                    {
 | 
			
		||||
                        lock (list)
 | 
			
		||||
                        var item = ResolvePath(f, parent) as T;
 | 
			
		||||
 | 
			
		||||
                        if (item != null)
 | 
			
		||||
                        {
 | 
			
		||||
                            list.Add(item);
 | 
			
		||||
                            lock (list)
 | 
			
		||||
                            {
 | 
			
		||||
                                list.Add(item);
 | 
			
		||||
                            }
 | 
			
		||||
                        }
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user