浏览代码

update date

Luke Pulverenti 10 年之前
父节点
当前提交
a5ef758917
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      MediaBrowser.Server.Implementations/LiveTv/Listings/Emby/EmbyListingsNorthAmerica.cs

+ 1 - 1
MediaBrowser.Server.Implementations/LiveTv/Listings/Emby/EmbyListingsNorthAmerica.cs

@@ -39,7 +39,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv.Listings.Emby
 
             var response = await GetResponse<ListingInfo[]>(url).ConfigureAwait(false);
 
-            return response.Where(i => IncludeInResults(i, channelNumber)).Select(GetProgramInfo);
+            return response.Where(i => IncludeInResults(i, channelNumber)).Select(GetProgramInfo).OrderBy(i => i.StartDate);
         }
 
         private ProgramInfo GetProgramInfo(ListingInfo info)