Supports accentuated characters

This commit is contained in:
David Cormier 2013-08-01 22:07:47 -04:00
parent 1635f1df83
commit 9a4bdad55d

View file

@ -52,7 +52,7 @@ var Protocol = function() {
for (var c = 0; c < uia.length; c++) { for (var c = 0; c < uia.length; c++) {
_str[c] = String.fromCharCode(uia[c]); _str[c] = String.fromCharCode(uia[c]);
} }
return _str.join(""); return decodeURIComponent(escape(_str.join("")));
}; };
var getInt = function() { var getInt = function() {