fix a bug in Ox.decodeURI/Ox.decodeURIComponent
This commit is contained in:
parent
0f5d475c78
commit
f16bbebfd4
1 changed files with 1 additions and 1 deletions
|
@ -254,7 +254,7 @@ Ox.decodeDeflate = function(string, callback) {
|
||||||
try {
|
try {
|
||||||
Ox.decodeUTF8(string);
|
Ox.decodeUTF8(string);
|
||||||
ret = match.slice(0, length * 3)
|
ret = match.slice(0, length * 3)
|
||||||
+ match.slice(length * 3).replace(/%/g, '%25');
|
+ replace(match.slice(length * 3));
|
||||||
return false;
|
return false;
|
||||||
} catch(e) {}
|
} catch(e) {}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue