Merge pull request #419 from iptv-org/update-directv-com

Update directv.com.config.js
This commit is contained in:
Aleksandr Statciuk 2022-01-19 22:19:25 +03:00 committed by GitHub
commit abdc974c71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -26,6 +26,8 @@ module.exports = {
title: item.title, title: item.title,
description: parseDescription(detail), description: parseDescription(detail),
category: item.subcategoryList, category: item.subcategoryList,
season: item.seasonNumber,
episode: item.episodeNumber,
start, start,
stop stop
}) })

View file

@ -58,6 +58,8 @@ it('can parse response', done => {
title: 'Home Sweet Home', title: 'Home Sweet Home',
description: description:
'The Baltzers, a surfing Mormon family, and the Silversteins, an artistic Black and Latino family with Jewish heritage, discover that the struggle of living outside their comfort zones sparks rewarding moments.', 'The Baltzers, a surfing Mormon family, and the Silversteins, an artistic Black and Latino family with Jewish heritage, discover that the struggle of living outside their comfort zones sparks rewarding moments.',
season: 1,
episode: 3,
category: ['Series', 'Reality'] category: ['Series', 'Reality']
} }
]) ])