aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library/LibraryManager.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-08-01 12:42:15 +0200
committerGitHub <noreply@github.com>2020-08-01 12:42:15 +0200
commit7621c8b8065b2c96a5886445c30a0b553a90e807 (patch)
treef71f39f6ce9ea612668a2f35a156779636eb3601 /Emby.Server.Implementations/Library/LibraryManager.cs
parent9ec787e95488e28708b9698ce2700e90b0f05912 (diff)
parente0d2eb8eec1d48175c30309e1e4c0a771329ff4b (diff)
Merge pull request #3769 from jellyfin/dkanada-patch-1
Remove useless order step for intros
Diffstat (limited to 'Emby.Server.Implementations/Library/LibraryManager.cs')
-rw-r--r--Emby.Server.Implementations/Library/LibraryManager.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs
index f3c2f0e03..169f50b64 100644
--- a/Emby.Server.Implementations/Library/LibraryManager.cs
+++ b/Emby.Server.Implementations/Library/LibraryManager.cs
@@ -1592,7 +1592,6 @@ namespace Emby.Server.Implementations.Library
public async Task<IEnumerable<Video>> GetIntros(BaseItem item, User user)
{
var tasks = IntroProviders
- .OrderBy(i => i.GetType().Name.Contains("Default", StringComparison.OrdinalIgnoreCase) ? 1 : 0)
.Take(1)
.Select(i => GetIntros(i, item, user));