diff options
author | thlo <t.lohmar@gmx.de> | 2013-01-07 20:41:02 +0100 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-01-07 20:41:02 +0100 |
commit | 7034d92cbb1bf7b4c219b6ff4f744349211781dc (patch) | |
tree | d87d5151cecd205976d23d0e13a61fc7cb8a8870 /smarttv-client/Javascript/Server.js | |
parent | 21f592bf3c2f09f41cbc3c9c6a34ffe5d70df834 (diff) | |
download | vdr-plugin-smarttvweb-7034d92cbb1bf7b4c219b6ff4f744349211781dc.tar.gz vdr-plugin-smarttvweb-7034d92cbb1bf7b4c219b6ff4f744349211781dc.tar.bz2 |
Fixes (use liveChannels from Widget.conf, no error after start video,
etc).
Diffstat (limited to 'smarttv-client/Javascript/Server.js')
-rwxr-xr-x | smarttv-client/Javascript/Server.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/smarttv-client/Javascript/Server.js b/smarttv-client/Javascript/Server.js index ee23505..f24a789 100755 --- a/smarttv-client/Javascript/Server.js +++ b/smarttv-client/Javascript/Server.js @@ -67,10 +67,10 @@ Server.createVideoList = function() { if (this.XHRObj.status != 200) {
Display.putInnerHTML(splashElement, "XML Server Error " + this.XHRObj.status);
- Display.status("XML Server Error " + this.XHRObj.status);
- Display.showPopup("XML Server Error " + this.XHRObj.status);
+// Display.status("XML Server Error " + this.XHRObj.status);
+// Display.showPopup("XML Server Error " + this.XHRObj.status);
if (this.errorCallback != null) {
- this.errorCallback("ServerError");
+ this.errorCallback(this.XHRObj.responseText);
}
}
else
|