mirror of
https://github.com/iptv-org/epg
synced 2025-12-16 18:37:01 -05:00
Merge pull request #34 from rkben/rkben-patch-1
Fix for tvtv.us movie titles
This commit is contained in:
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user