aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/fjoin.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-09-01 08:37:49 +0100
committerGravatar Sadie Powell2023-09-01 08:37:49 +0100
commitf319a1ab91bafb472808de7173b1c68b39876152 (patch)
treedd0868199cce8784c75a7c7b5e3b78e29b13e43a /src/modules/m_spanningtree/fjoin.cpp
parentMerge branch 'insp3' into master. (diff)
parentTweak the malformed channel name message slightly. (diff)
Merge branch 'insp3' into master.
Diffstat (limited to 'src/modules/m_spanningtree/fjoin.cpp')
-rw-r--r--src/modules/m_spanningtree/fjoin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/fjoin.cpp b/src/modules/m_spanningtree/fjoin.cpp
index c09220a3f..ebf83ede5 100644
--- a/src/modules/m_spanningtree/fjoin.cpp
+++ b/src/modules/m_spanningtree/fjoin.cpp
@@ -127,7 +127,7 @@ CmdResult CommandFJoin::Handle(User* srcuser, Params& params)
if (!chan)
{
if (!ServerInstance->Channels.IsPrefix(channel[0]))
- throw ProtocolException("Malformed channel name in FJOIN '" + channel + '"');
+ throw ProtocolException("Malformed channel name in FJOIN: " + channel);
chan = new Channel(channel, TS);
}