aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-12-01 11:09:01 -0700
committercrobibero <cody@robibe.ro>2020-12-01 11:09:01 -0700
commit821ad7999207faf273204500c8c1dcb73f9c3c83 (patch)
tree3d94d4f3829d4de4e3fdc19125a2694e2014476d /Emby.Server.Implementations
parentc083b29e292c72b65929ea05639e3b5a8a401037 (diff)
fix spacing
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/Channels/ChannelManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Channels/ChannelManager.cs b/Emby.Server.Implementations/Channels/ChannelManager.cs
index b8692f0e50..57684a4298 100644
--- a/Emby.Server.Implementations/Channels/ChannelManager.cs
+++ b/Emby.Server.Implementations/Channels/ChannelManager.cs
@@ -538,8 +538,8 @@ namespace Emby.Server.Implementations.Channels
return _libraryManager.GetItemIds(
new InternalItemsQuery
{
- IncludeItemTypes = new[] {nameof(Channel)},
- OrderBy = new[] {(ItemSortBy.SortName, SortOrder.Ascending)}
+ IncludeItemTypes = new[] { nameof(Channel) },
+ OrderBy = new[] { (ItemSortBy.SortName, SortOrder.Ascending) }
}).Select(i => GetChannelFeatures(i)).ToArray();
}