aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-08-14 10:42:40 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-08-14 10:42:40 -0400
commit6ed2a85f45c4b59b4fe6ee1c93b81aa76a69fc78 (patch)
treee90e790fe436504f5913567629407dd1d85ceb6b /MediaBrowser.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs
parentda837ffbf040051f7c73b407331c5d0f9e9dce90 (diff)
update polymer
Diffstat (limited to 'MediaBrowser.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs')
-rw-r--r--MediaBrowser.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs b/MediaBrowser.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs
index 457d1a4f1..b0edfc46b 100644
--- a/MediaBrowser.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs
+++ b/MediaBrowser.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs
@@ -337,6 +337,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv.Listings
(details.showType ?? "No ShowType") == "TV Movie" ||
(details.showType ?? "No ShowType") == "Short Film",
IsPremiere = false,
+ ShowId = programInfo.programID
};
if (!string.IsNullOrWhiteSpace(details.originalAirDate))
@@ -448,8 +449,9 @@ namespace MediaBrowser.Server.Implementations.LiveTv.Listings
_logger.Info("Headend: " + headend.headend);
foreach (ScheduleDirect.Lineup lineup in headend.lineups)
{
- _logger.Info("Headend: " + lineup.uri.Substring(18));
- lineups.Add(new NameIdPair()
+ _logger.Info("Headend: " + lineup.uri);
+
+ lineups.Add(new NameIdPair
{
Name = string.IsNullOrWhiteSpace(lineup.name) ? lineup.lineup : lineup.name,
Id = lineup.uri.Substring(18)