summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_ircv3_capnotify.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_ircv3_capnotify.cpp b/src/modules/m_ircv3_capnotify.cpp
index b19c2665d..93c30df12 100644
--- a/src/modules/m_ircv3_capnotify.cpp
+++ b/src/modules/m_ircv3_capnotify.cpp
@@ -54,7 +54,7 @@ class ModuleIRCv3CapNotify : public Module, public Cap::EventListener, public Re
void Send(const std::string& capname, Cap::Capability* cap, bool add)
{
- std::string msg = (add ? "ADD :" : "DEL :");
+ std::string msg = (add ? "NEW :" : "DEL :");
msg.append(capname);
std::string msgwithval = msg;
msgwithval.push_back('=');