mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	Fixed enumerable
This commit is contained in:
		
							parent
							
								
									54a6a33c01
								
							
						
					
					
						commit
						fe9c6fb8ae
					
				@ -183,8 +183,9 @@ public class MediaSegmentManager : IMediaSegmentManager
 | 
				
			|||||||
        return query
 | 
					        return query
 | 
				
			||||||
            .OrderBy(e => e.StartTicks)
 | 
					            .OrderBy(e => e.StartTicks)
 | 
				
			||||||
            .AsNoTracking()
 | 
					            .AsNoTracking()
 | 
				
			||||||
            .ToImmutableList()
 | 
					            .AsEnumerable()
 | 
				
			||||||
            .Select(Map);
 | 
					            .Select(Map)
 | 
				
			||||||
 | 
					            .ToImmutableArray();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    private static MediaSegmentDto Map(MediaSegment segment)
 | 
					    private static MediaSegmentDto Map(MediaSegment segment)
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user