Open agentcooper opened 9 years ago
In Deserializer, https://github.com/baalexander/node-xmlrpc/blob/master/lib/deserializer.js#L276
Instead of
var buffer = new Buffer(data, 'base64')
I need
var buffer = String(new Buffer(data, 'base64'))
Can you export the Deserializer like it was done in https://github.com/baalexander/node-xmlrpc/pull/103, but then I guess rewrite happened and it is not available anymore?
@patricklodder any thoughts on this?
In Deserializer, https://github.com/baalexander/node-xmlrpc/blob/master/lib/deserializer.js#L276
Instead of
I need
Can you export the Deserializer like it was done in https://github.com/baalexander/node-xmlrpc/pull/103, but then I guess rewrite happened and it is not available anymore?