From 56687c27cb5045e7600c58f58c6e70efea4c87d1 Mon Sep 17 00:00:00 2001 From: Filippo Cortigiani Date: Mon, 10 Jan 2022 17:12:33 +0100 Subject: Fix ns_resetpass not returning a response for XMLRPC (#243) Co-authored-by: filippo nicola cortigiani --- modules/commands/ns_resetpass.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'modules/commands/ns_resetpass.cpp') diff --git a/modules/commands/ns_resetpass.cpp b/modules/commands/ns_resetpass.cpp index fec5bc7b9..12fe1172e 100644 --- a/modules/commands/ns_resetpass.cpp +++ b/modules/commands/ns_resetpass.cpp @@ -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; -- cgit