update polymer

This commit is contained in:
Luke Pulverenti
2015-08-14 10:42:40 -04:00
parent da837ffbf0
commit 6ed2a85f45
3 changed files with 13 additions and 16 deletions

View File

@@ -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)