diff options
| author | M. Voerman <rekordc@gmail.com> | 2013-01-27 13:53:09 +0100 |
|---|---|---|
| committer | M. Voerman <rekordc@gmail.com> | 2013-01-27 13:53:09 +0100 |
| commit | 96148603c0819243f34e01517fe3d110972f174d (patch) | |
| tree | a6f27fd97b705c91c44e35153aa48c00253d9b5c /index.html | |
| parent | e5e26df10afd218b6a477d193104843c812a54dd (diff) | |
| download | vdr-vipclient-96148603c0819243f34e01517fe3d110972f174d.tar.gz vdr-vipclient-96148603c0819243f34e01517fe3d110972f174d.tar.bz2 | |
Fixed default channel, if start channel isn't in channelgroup 0
Fixed a bug in setresume
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -764,7 +764,7 @@ function onKeyDown(event) { SI=channels[currChan].split("-"); recordStart(SI[4]); } else { - recordStart = (ServerAdres[ChanGroup] + channels[currChan]); + recordStart(ServerAdres[ChanGroup] + channels[currChan]); } } break; @@ -2289,6 +2289,7 @@ try { function setResume() { try { + position = position + (mediaPlayer.getPosition()/1000) var xmlhttp = new XMLHttpRequest(); xmlhttp.open("POST", recServ + "/setResume.xml?guid=" + recGUID[currMed] + "&resume=" + position, false); xmlhttp.send(); |
