summaryrefslogtreecommitdiff
path: root/modules/chanserv/cs_topic.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-04-22 17:36:26 +0100
committerSadie Powell <sadie@witchery.services>2025-04-22 18:16:31 +0100
commitf3629598347763c984d03ee70235133c45dd9908 (patch)
tree9aa5190273a40005a4c730c06258b1ee3ae703c7 /modules/chanserv/cs_topic.cpp
parentf5a85c69d225edaed4e11eb4c2b27d66ebc5195e (diff)
Fix splitting in the middle of some command names.
Diffstat (limited to 'modules/chanserv/cs_topic.cpp')
-rw-r--r--modules/chanserv/cs_topic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/chanserv/cs_topic.cpp b/modules/chanserv/cs_topic.cpp
index e1aa98e99..fd5d61b2d 100644
--- a/modules/chanserv/cs_topic.cpp
+++ b/modules/chanserv/cs_topic.cpp
@@ -75,7 +75,7 @@ public:
"last user leaves the channel, and will be restored the "
"next time the channel is created."
),
- source.command.c_str(),
+ source.command.nobreak().c_str(),
source.service->nick.c_str());
return true;
}