aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library/LibraryManager.cs
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/Library/LibraryManager.cs
parentb80b50437c64d947361b465384f41e2cf25e220b (diff)
Use Order() introduced in .NET 7 (#8923)
Diffstat (limited to 'Emby.Server.Implementations/Library/LibraryManager.cs')
-rw-r--r--Emby.Server.Implementations/Library/LibraryManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs
index bf12e4e0a..a3c66dc79 100644
--- a/Emby.Server.Implementations/Library/LibraryManager.cs
+++ b/Emby.Server.Implementations/Library/LibraryManager.cs
@@ -1175,7 +1175,7 @@ namespace Emby.Server.Implementations.Library
}
})
.Where(i => i is not null)
- .OrderBy(i => i)
+ .Order()
.ToArray(),
CollectionType = GetCollectionType(dir)