diff options
| author | 2023-09-01 08:37:49 +0100 | |
|---|---|---|
| committer | 2023-09-01 08:37:49 +0100 | |
| commit | f319a1ab91bafb472808de7173b1c68b39876152 (patch) | |
| tree | dd0868199cce8784c75a7c7b5e3b78e29b13e43a /src/modules/m_spanningtree/fjoin.cpp | |
| parent | Merge branch 'insp3' into master. (diff) | |
| parent | Tweak 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.cpp | 2 |
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); } |
