diff options
| author | 2019-08-01 00:11:12 +0100 | |
|---|---|---|
| committer | 2019-08-01 00:11:12 +0100 | |
| commit | 4e3d655dff6f8a5aed626475fbf19c2a7119c20b (patch) | |
| tree | 9e0372da3f33f800d5ed1f77ad1599520a152477 /src/modules/m_ircv3.cpp | |
| parent | Fix sasl hangs with clients that blindly request the capability. (diff) | |
Only send ACCOUNT and CHGHOST to clients that have sent NICK/USER.
Closes #1657.
Diffstat (limited to 'src/modules/m_ircv3.cpp')
| -rw-r--r-- | src/modules/m_ircv3.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/m_ircv3.cpp b/src/modules/m_ircv3.cpp index 14b1cf8a1..d65cd8695 100644 --- a/src/modules/m_ircv3.cpp +++ b/src/modules/m_ircv3.cpp @@ -139,6 +139,9 @@ class ModuleIRCv3 void OnAccountChange(User* user, const std::string& newaccount) CXX11_OVERRIDE { + if (!(user->registered & REG_NICKUSER)) + return; + // Logged in: 1 parameter which is the account name // Logged out: 1 parameter which is a "*" ClientProtocol::Message msg("ACCOUNT", user); |
