We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a4d0f6 commit e651bd5Copy full SHA for e651bd5
packages/eztv-api/src/index.ts
@@ -451,7 +451,7 @@ module.exports = class EztvApi {
451
} else if (title.match(dateBased)) {
452
// If a item becomes data based check if the name of the show is in the
453
// item this prevents wrongly mapped items to be added
454
- if (!data.dateBased && !title.toLowerCase().includes(data.show.toLowerCase())) {
+ if (!data.dateBased && !title.toLowerCase().includes(data.title.toLowerCase())) {
455
return
456
}
457
0 commit comments