diff options
| author | Bond-009 <bond.009@outlook.com> | 2022-12-19 17:30:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-19 09:30:00 -0700 |
| commit | 497d8c495797e1bb37fbd92e7298439c1921a5fa (patch) | |
| tree | a9930dd2a6d9aded735ddd22e44397be43b431a2 /Emby.Server.Implementations/IO/LibraryMonitor.cs | |
| parent | b80b50437c64d947361b465384f41e2cf25e220b (diff) | |
Use Order() introduced in .NET 7 (#8923)
Diffstat (limited to 'Emby.Server.Implementations/IO/LibraryMonitor.cs')
| -rw-r--r-- | Emby.Server.Implementations/IO/LibraryMonitor.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/IO/LibraryMonitor.cs b/Emby.Server.Implementations/IO/LibraryMonitor.cs index 4b999d40b..f67a02be8 100644 --- a/Emby.Server.Implementations/IO/LibraryMonitor.cs +++ b/Emby.Server.Implementations/IO/LibraryMonitor.cs @@ -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) { |
