diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-08-11 14:50:27 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-08-11 14:50:27 -0400 |
| commit | a5ef7589170efb465bd183741e3d42bca297a314 (patch) | |
| tree | 4c45cd040d833fe651cd2c731d641d135b574c92 | |
| parent | 3b4be8f8be96fd79d428a0ac428928602b8c362b (diff) | |
update date
| -rw-r--r-- | MediaBrowser.Server.Implementations/LiveTv/Listings/Emby/EmbyListingsNorthAmerica.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/LiveTv/Listings/Emby/EmbyListingsNorthAmerica.cs b/MediaBrowser.Server.Implementations/LiveTv/Listings/Emby/EmbyListingsNorthAmerica.cs index 103d9ec42..fca1bb012 100644 --- a/MediaBrowser.Server.Implementations/LiveTv/Listings/Emby/EmbyListingsNorthAmerica.cs +++ b/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) |
