diff options
Diffstat (limited to 'catalogue.lua')
| -rw-r--r-- | catalogue.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/catalogue.lua b/catalogue.lua index 7b83220..47a1b7a 100644 --- a/catalogue.lua +++ b/catalogue.lua @@ -95,15 +95,15 @@ function mt:load_xc_section(section) vv.group_type = 'series' vv.id = section.id .. ':series:' .. v.series_id vv.series_id = v.series_id - vv.image = util.strip(v.cover) + vv.image = util.strip_ne(v.cover) vv.lazy = true -- avoid API calls on search else vv.type = 'stream' vv.id = section.id .. ':stream:' .. v.stream_id vv.stream_type = v.stream_type vv.stream_id = v.stream_id - vv.image = util.strip(v.stream_icon) - vv.epg_channel_id = v.epg_channel_id + vv.image = util.strip_ne(v.stream_icon) + vv.epg_channel_id = util.strip_ne(v.epg_channel_id) end self:add(vv) |
