aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_ircv3.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-04-18 13:16:47 +0100
committerGravatar Sadie Powell2022-04-18 13:16:47 +0100
commit7b72365bdf29b1e0aa6dea0a5d0584fe0a76f488 (patch)
treec0cd43e9c8b46084b83fd295240f287a6534c414 /src/modules/m_ircv3.cpp
parentFix doxygen to include the public module header files. (diff)
Also send ACCOUNT to the user who is authenticating.
Closes #1974.
Diffstat (limited to 'src/modules/m_ircv3.cpp')
-rw-r--r--src/modules/m_ircv3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_ircv3.cpp b/src/modules/m_ircv3.cpp
index abfd10ce6..58b6fd244 100644
--- a/src/modules/m_ircv3.cpp
+++ b/src/modules/m_ircv3.cpp
@@ -150,7 +150,7 @@ class ModuleIRCv3
const std::string& param = (newaccount.empty() ? joinhook.asterisk : newaccount);
msg.PushParamRef(param);
ClientProtocol::Event accountevent(accountprotoev, msg);
- IRCv3::WriteNeighborsWithCap(user, accountevent, cap_accountnotify);
+ IRCv3::WriteNeighborsWithCap(user, accountevent, cap_accountnotify, true);
}
void OnUserAway(User* user) CXX11_OVERRIDE