diff options
author | Adam <Adam@anope.org> | 2016-07-03 12:08:21 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-07-03 12:08:21 -0400 |
commit | 4c4cc0ded7889cc65ee7faafd0e8b9c33421fd8d (patch) | |
tree | 768f83b256973bc2cb443356cf88dbc320a01f33 | |
parent | 83f89bfece81e14c93584370556b0f5751d25f44 (diff) |
Fix xmlrpc notice call to return something to prevent m_xmlrpc from thinking it is a http 404
-rw-r--r-- | modules/m_xmlrpc_main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/m_xmlrpc_main.cpp b/modules/m_xmlrpc_main.cpp index 4835644dd..ed89ec07e 100644 --- a/modules/m_xmlrpc_main.cpp +++ b/modules/m_xmlrpc_main.cpp @@ -273,6 +273,8 @@ class MyXMLRPCEvent : public XMLRPCEvent return; u->SendMessage(bi, message); + + request.reply("result", "Success"); } }; |