mirror of
https://github.com/DigitalDevices/octonet.git
synced 2023-10-10 13:36:52 +02:00
Bug fixes in EPG and channel scan
This commit is contained in:
parent
92c835be8c
commit
6f36eaa637
@ -100,7 +100,7 @@ else
|
|||||||
Params = Params .. " --mtype="..v
|
Params = Params .. " --mtype="..v
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
local Key,Sid = Channel.ID:match("^(%a+):%d+:%d+:(%d+)")
|
local Key,Sid = Channel.ID:match("^([A-Z0-9]+):%d+:%d+:(%d+)")
|
||||||
if Key and Sid then
|
if Key and Sid then
|
||||||
local t = tl[Params]
|
local t = tl[Params]
|
||||||
if t then
|
if t then
|
||||||
|
@ -262,7 +262,7 @@ if tl.SourceList then
|
|||||||
gname = ChannelOverwrite.Group
|
gname = ChannelOverwrite.Group
|
||||||
end
|
end
|
||||||
if ChannelOverwrite.Pids then
|
if ChannelOverwrite.Pids then
|
||||||
gname = ChannelOverwrite.Pids
|
pids = ChannelOverwrite.Pids
|
||||||
end
|
end
|
||||||
if ChannelOverwrite.Title then
|
if ChannelOverwrite.Title then
|
||||||
sname = ChannelOverwrite.Title
|
sname = ChannelOverwrite.Title
|
||||||
|
@ -209,7 +209,7 @@ function ShowEvent(event,index)
|
|||||||
var box = document.getElementById("event" + index);
|
var box = document.getElementById("event" + index);
|
||||||
|
|
||||||
var d = new Date(event.Time);
|
var d = new Date(event.Time);
|
||||||
var id = event.ID.match(/[A-Z]+:\d+:\d+:\d+/);
|
var id = event.ID.match(/[A-Z0-9]+:\d+:\d+:\d+/);
|
||||||
var ch = ChannelLookup[id[0]];
|
var ch = ChannelLookup[id[0]];
|
||||||
var Channel = "\u00A0";
|
var Channel = "\u00A0";
|
||||||
var Text = "";
|
var Text = "";
|
||||||
|
Loading…
Reference in New Issue
Block a user