Fixed CouchDB import error

This commit is contained in:
benweet 2014-10-26 17:28:51 +00:00
parent 91750c60b4
commit bfed1cfa45

View File

@ -727,7 +727,7 @@ define([
};
utils.decodeBase64 = function(str) {
return window.unescape(decodeURIComponent(window.atob(str)));
return decodeURIComponent(window.escape(window.atob(str)));
};
// CRC32 algorithm