From b697eec2a4c3593e5b5248a3ac1edff8b48797df Mon Sep 17 00:00:00 2001 From: Richard Benson Date: Tue, 3 Aug 2021 15:42:17 -0400 Subject: [PATCH] Fix for Movie titles --- sites/tvtv.us.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sites/tvtv.us.config.js b/sites/tvtv.us.config.js index 65eb694a..ce4b6608 100644 --- a/sites/tvtv.us.config.js +++ b/sites/tvtv.us.config.js @@ -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(),