소스 검색

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)