1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 14:56:38 +02:00

Fix ns_resetpass not returning a response for XMLRPC (#243)

Co-authored-by: filippo nicola cortigiani <simos@H7-25.fritz.box>
This commit is contained in:
Filippo Cortigiani
2022-01-10 17:12:33 +01:00
committed by GitHub
parent 9b0c7929d9
commit 56687c27cb
+2 -1
View File
@@ -105,8 +105,9 @@ class NSResetPass : public Module
if (source.GetUser())
{
source.GetUser()->Identify(na);
source.Reply(_("You are now identified for your nick. Change your password now."));
}
source.Reply(_("You are now identified for your nick. Change your password now."));
}
else
return EVENT_CONTINUE;