summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorM. Voerman <rekordc@gmail.com>2014-06-07 01:22:22 +0200
committerM. Voerman <rekordc@gmail.com>2014-06-07 01:22:22 +0200
commitdcff3e34b84d6a0fcde03e352c26f0ed31d45c67 (patch)
tree5552a1c02f441bf6bb056ee340b595455b3e0b12 /index.html
parent57926bb755d132a231edd849ed99ad6344ae4bfe (diff)
downloadvdr-vipclient-dcff3e34b84d6a0fcde03e352c26f0ed31d45c67.tar.gz
vdr-vipclient-dcff3e34b84d6a0fcde03e352c26f0ed31d45c67.tar.bz2
Still some times error, so delay is now 500 msec within 5 seconds after zap
Diffstat (limited to 'index.html')
-rw-r--r--index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/index.html b/index.html
index dd41d12..678fd65 100644
--- a/index.html
+++ b/index.html
@@ -461,8 +461,8 @@ function play(uri) {
URL = uri;
initialDelayPlayID = setTimeout("mediaPlayer.open(URL);mediaPlayer.play(1000);GetEPG(currChan);ExtraStuff();",initialDelayPlay);
- initialDelayPlay = 300; // wait 300 ms before zap to next channel
- PlayDelayID = setTimeout("initialDelayPlay = 0;",1500);
+ initialDelayPlay = 500; // wait 500 ms before zap to next channel
+ PlayDelayID = setTimeout("initialDelayPlay = 0;",5000);
SetLed(1,1,0);
if(isFullscreen) { showOSD(); }
@@ -3924,7 +3924,7 @@ try {
option = Number(option);
if (RecCmds[option] > -1 ) {
var xmlhttp = new XMLHttpRequest();
- xmlhttp.open("POST", server_ip + recServ + "/execreccmd?cmd=" + RecCmds[option] + "&guid=" + recGUID[currMed], false);
+ xmlhttp.open("POST", server_ip + recServ + "/execreccmd?cmd=" + RecCmds[option] + "&guid=\"" + recGUID[currMed] + "\"", false);
xmlhttp.send();
recList[currMed] = RecCmdsIcon[option] + recList[currMed].substring(1);
showMediaList();