1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

add series timer workaround

This commit is contained in:
Luke Pulverenti 2016-10-01 15:21:42 -04:00
parent 5514d55822
commit 81a9a2a758

View file

@ -19,10 +19,15 @@
EnableTotalRecordCount: false,
EnableUserData: false,
SeriesTimerId: params.id,
Fields: "ChannelInfo"
Fields: "ChannelInfo",
limit: 100
}).then(function (result) {
if (result.Items.length && result.Items[0].SeriesTimerId != params.id) {
result.Items = [];
}
LiveTvHelpers.getProgramScheduleHtml(result.Items).then(function (html) {
var scheduleTab = page.querySelector('.scheduleTab');