Merge with 0.5
[prosody.git] / plugins / mod_xmlrpc.lua
index ff2c5f7f2a0b9834ffca2d29ebd39fd378002357..05c0b8b04b4760e0bfff31c6f4f936b9bc361649 100644 (file)
@@ -83,7 +83,7 @@ local function handle_xmlrpc_request(jid, method, args)
                end
                return create_error_response(500, "Error in creating response: "..result);
        end
-       return create_error_response(0, result or "nil");
+       return create_error_response(0, (result and result:gmatch("[^:]*:[^:]*: (.*)")()) or "nil");
 end
 
 local function handle_xmpp_request(origin, stanza)