aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2022-02-14 16:31:07 +0100
committerBond_009 <bond.009@outlook.com>2022-02-14 16:31:07 +0100
commit5d28c5547e69b0d40e0bd2792335c9f85dba655b (patch)
treecd6ab4a1e4ada094fc3593be4be5ab5e0766acb8 /Emby.Server.Implementations
parentdbd7be091d802a788e520809fe55c9063a9cdaf4 (diff)
Fix indentation
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/Library/MediaStreamSelector.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/MediaStreamSelector.cs b/Emby.Server.Implementations/Library/MediaStreamSelector.cs
index 6ba9b29fa..c5abb9a0a 100644
--- a/Emby.Server.Implementations/Library/MediaStreamSelector.cs
+++ b/Emby.Server.Implementations/Library/MediaStreamSelector.cs
@@ -88,7 +88,7 @@ namespace Emby.Server.Implementations.Library
{
// Give some preference to external text subs for better performance
return streams
- .Where(i => i.Type == type)
+ .Where(i => i.Type == type)
.OrderBy(i =>
{
var index = languagePreferences.FindIndex(x => string.Equals(x, i.Language, StringComparison.OrdinalIgnoreCase));