Supports accentuated characters
This commit is contained in:
parent
1635f1df83
commit
9a4bdad55d
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ var Protocol = function() {
|
|||
for (var c = 0; c < uia.length; c++) {
|
||||
_str[c] = String.fromCharCode(uia[c]);
|
||||
}
|
||||
return _str.join("");
|
||||
return decodeURIComponent(escape(_str.join("")));
|
||||
};
|
||||
|
||||
var getInt = function() {
|
||||
|
|
Loading…
Reference in a new issue