Skip to content

Commit

Permalink
no loop asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
Paxx committed May 12, 2023
1 parent 9f9efbf commit 1ac66a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/auto_scheduler/mrss.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@ export class MRSSAutoScheduler {
channelId: feed.channelId,
title: "LIVE EVENT",
duration: totalScheduleEventDuration,
start_time: asset.start_time,
end_time: asset.end_time,
start_time: asset.start_time * 1000,
end_time: asset.end_time * 1000,
url: asset.url,
liveUrl: feed.liveUrl,
type: ScheduleEventType.LIVE,
Expand All @@ -238,8 +238,8 @@ export class MRSSAutoScheduler {
channelId: feed.channelId,
title: asset.title,
duration: totalScheduleEventDuration,
start_time: asset.start_time,
end_time: asset.end_time,
start_time: asset.start_time * 1000,
end_time: asset.end_time * 1000,
url: asset.url,
type: ScheduleEventType.VOD,
}));
Expand Down

0 comments on commit 1ac66a1

Please sign in to comment.