aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/IO
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2022-12-19 17:30:00 +0100
committerGitHub <noreply@github.com>2022-12-19 09:30:00 -0700
commit497d8c495797e1bb37fbd92e7298439c1921a5fa (patch)
treea9930dd2a6d9aded735ddd22e44397be43b431a2 /Emby.Server.Implementations/IO
parentb80b50437c64d947361b465384f41e2cf25e220b (diff)
Use Order() introduced in .NET 7 (#8923)
Diffstat (limited to 'Emby.Server.Implementations/IO')
-rw-r--r--Emby.Server.Implementations/IO/LibraryMonitor.cs2
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)
{