mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 00:50:09 -04:00
Fix for Movie titles
This commit is contained in:
parent
f18a68f178
commit
b697eec2a4
1 changed files with 5 additions and 1 deletions
|
@ -23,8 +23,12 @@ module.exports = {
|
|||
const icon = item.showPicture
|
||||
? `https://cdn.tvpassport.com/image/show/480x720/${item.showPicture}`
|
||||
: null
|
||||
let title = item.showName
|
||||
if (title === "Movie") {
|
||||
title = item.episodeTitle
|
||||
}
|
||||
programs.push({
|
||||
title: item.showName,
|
||||
title: title,
|
||||
description: item.description,
|
||||
category: item.showType,
|
||||
start: start.toString(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue