[EDIT: This is more of a support question and less a development one, hence the move.]
Hello,
I think there's a bug in the deserialize function.
Here's the deserialize function:
deserialize: function(obj){
if(obj.error){
var e = new Error(obj.error);
e._rpcErrorObject = obj.error;
return e;
}
return obj.result || true;
}
