mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 23:58:57 +00:00
Use Order() introduced in .NET 7 (#8923)
This commit is contained in:
@@ -131,7 +131,7 @@ namespace Emby.Server.Implementations.IO
|
||||
.OfType<Folder>()
|
||||
.SelectMany(f => f.PhysicalLocations)
|
||||
.Distinct(StringComparer.OrdinalIgnoreCase)
|
||||
.OrderBy(i => i);
|
||||
.Order();
|
||||
|
||||
foreach (var path in paths)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user