summaryrefslogtreecommitdiffstats
path: root/webclients/novnc/include/base64.js
diff options
context:
space:
mode:
authorChristian Beier <dontmind@freeshell.org>2012-04-12 18:41:14 +0200
committerChristian Beier <dontmind@freeshell.org>2012-04-12 18:41:14 +0200
commit98f4037785246f77e544bab9196f076fe310be16 (patch)
tree9531342656a66e0963ff9b55a00db2fe3222e31d /webclients/novnc/include/base64.js
parentefcdab50cc10ad121653bfff0da441495af461d3 (diff)
downloadlibtdevnc-98f4037785246f77e544bab9196f076fe310be16.tar.gz
libtdevnc-98f4037785246f77e544bab9196f076fe310be16.zip
Update our copy of noVNC.
Bugfixes and support for tight encoding with zlib.
Diffstat (limited to 'webclients/novnc/include/base64.js')
-rw-r--r--webclients/novnc/include/base64.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webclients/novnc/include/base64.js b/webclients/novnc/include/base64.js
index c68b33a..e9b3c52 100644
--- a/webclients/novnc/include/base64.js
+++ b/webclients/novnc/include/base64.js
@@ -116,7 +116,7 @@ decode: function (data, offset) {
padding = (data.charAt(i) === pad);
// Skip illegal characters and whitespace
if (c === -1) {
- console.error("Illegal character '" + data.charCodeAt(i) + "'");
+ console.error("Illegal character code " + data.charCodeAt(i) + " at position " + i);
continue;
}