fix open password

This commit is contained in:
antelle 2016-03-23 20:15:39 +03:00
parent 16e5396263
commit 3180f36049
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ var StorageWebDav = {
for (var i = 0; i < encpass.length; i++) {
password += String.fromCharCode(encpass.charCodeAt(i) ^ fileId.charCodeAt(i % fileId.length));
}
opts.password = password;
result.password = password;
}
return result;
},