mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-12 01:50:07 -04:00
Update orangetv.es.config.js
This commit is contained in:
parent
b0cf90be1f
commit
470605534a
1 changed files with 5 additions and 2 deletions
|
@ -93,13 +93,16 @@ function parseIcon(item){
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseItems(content, channel) {
|
function parseItems(content, channel) {
|
||||||
const json = typeof content === 'string' ? JSON.parse(content) : typeof content === 'object' ? content : []
|
const json = typeof content === 'string' ? JSON.parse(content) : Array.isArray(content) ? content : []
|
||||||
|
|
||||||
|
if (!Array.isArray(json)) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
const channelData = json.find(i => i.channelExternalId == channel.site_id);
|
const channelData = json.find(i => i.channelExternalId == channel.site_id);
|
||||||
|
|
||||||
if(!channelData)
|
if(!channelData)
|
||||||
return [];
|
return [];
|
||||||
|
|
||||||
|
|
||||||
return channelData.programs;
|
return channelData.programs;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue