diff options
author | Filippo Cortigiani <simos@simosnap.org> | 2022-01-10 17:12:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-10 16:12:33 +0000 |
commit | 56687c27cb5045e7600c58f58c6e70efea4c87d1 (patch) | |
tree | 6adc74f92403ccc644586179270f1db4f4f4e77a | |
parent | 9b0c7929d9fcb158420d1333369bf20e52981f09 (diff) |
Fix ns_resetpass not returning a response for XMLRPC (#243)
Co-authored-by: filippo nicola cortigiani <simos@H7-25.fritz.box>
-rw-r--r-- | modules/commands/ns_resetpass.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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; |