mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-24 08:30:49 +01:00
Use Order() introduced in .NET 7 (#8923)
This commit is contained in:
@@ -529,7 +529,7 @@ namespace Emby.Server.Implementations.Library.Resolvers.Movies
|
||||
}
|
||||
|
||||
return false;
|
||||
}).OrderBy(i => i).ToList();
|
||||
}).Order().ToList();
|
||||
|
||||
// If different video types were found, don't allow this
|
||||
if (videoTypes.Distinct().Count() > 1)
|
||||
|
||||
Reference in New Issue
Block a user