From ef5c801357ae56afe10e45da415f41243518c4ef Mon Sep 17 00:00:00 2001 From: mwongjay Date: Sat, 29 Jul 2017 14:34:18 -0400 Subject: [PATCH] Sort provider channels --- MediaBrowser.Api/LiveTv/LiveTvService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MediaBrowser.Api/LiveTv/LiveTvService.cs b/MediaBrowser.Api/LiveTv/LiveTvService.cs index 837a0f6a6b..20e58eabbf 100644 --- a/MediaBrowser.Api/LiveTv/LiveTvService.cs +++ b/MediaBrowser.Api/LiveTv/LiveTvService.cs @@ -801,7 +801,7 @@ public async Task Get(GetChannelMappingOptions request) Name = i.Name, Id = i.Id - }).ToList(), + }).OrderBy(i => i.Name).ToList(), Mappings = mappings,