aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-08-15 16:33:53 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-08-15 16:33:53 -0400
commitd685925bbbfbe82367eff0122301a2ef130f0478 (patch)
tree65eddf0c7dff758d1fa9c879c2d564ba9279b21b
parentebd2f7b63d13bce6e5a30f8b37f89617bed44ff2 (diff)
update schedules direct
-rw-r--r--MediaBrowser.Api/ApiEntryPoint.cs6
-rw-r--r--MediaBrowser.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs3
2 files changed, 2 insertions, 7 deletions
diff --git a/MediaBrowser.Api/ApiEntryPoint.cs b/MediaBrowser.Api/ApiEntryPoint.cs
index 54c28d390..c2b406190 100644
--- a/MediaBrowser.Api/ApiEntryPoint.cs
+++ b/MediaBrowser.Api/ApiEntryPoint.cs
@@ -336,12 +336,6 @@ namespace MediaBrowser.Api
if (job.Type != TranscodingJobType.Progressive)
{
timerDuration = 1800000;
-
- // We can really reduce the timeout for apps that are using the newer api
- if (!string.IsNullOrWhiteSpace(job.PlaySessionId))
- {
- timerDuration = 300000;
- }
}
job.PingTimeout = timerDuration;
diff --git a/MediaBrowser.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs b/MediaBrowser.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs
index 36710c052..8650d4bc4 100644
--- a/MediaBrowser.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs
+++ b/MediaBrowser.Server.Implementations/LiveTv/Listings/SchedulesDirect.cs
@@ -337,7 +337,8 @@ namespace MediaBrowser.Server.Implementations.LiveTv.Listings
(details.showType ?? "No ShowType") == "TV Movie" ||
(details.showType ?? "No ShowType") == "Short Film",
IsPremiere = false,
- ShowId = programInfo.programID
+ ShowId = programInfo.programID,
+ SeriesId = programInfo.programID.Substring(0, 10)
};
if (!string.IsNullOrWhiteSpace(details.originalAirDate))