Commit f335fc54 authored by Tristan Cavelier's avatar Tristan Cavelier

Fix bug: async module correction on crypt storage

parent e2c25fba
......@@ -77,7 +77,9 @@ var newCryptedStorage = function ( spec, my ) {
}
// ok if undef or 0
arglist = arglist || [];
return obj[function_name].apply(obj[function_name],arglist);
setTimeout(function (){
obj[function_name].apply(obj[function_name],arglist);
});
};
async.neverCall = function (obj,function_name) {
obj._wait = obj._wait || {};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment