diff --git a/MediaBrowser.Server.Implementations/LiveTv/Listings/Emby/EmbyListingsNorthAmerica.cs b/MediaBrowser.Server.Implementations/LiveTv/Listings/Emby/EmbyListingsNorthAmerica.cs index 103d9ec420..fca1bb0128 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(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)