diff options
| author | 2023-09-01 08:35:37 +0100 | |
|---|---|---|
| committer | 2023-09-01 08:35:37 +0100 | |
| commit | 7e927afd8e0d0d56ee424b7630b666d7a91934ab (patch) | |
| tree | 82350eeeaa23e623bbedbd3761f6330697179d11 /src/modules/m_spanningtree | |
| parent | Fix being able to FJOIN non-channels. (diff) | |
Tweak the malformed channel name message slightly.
Diffstat (limited to 'src/modules/m_spanningtree')
| -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 1e2cbc45f..103529308 100644 --- a/src/modules/m_spanningtree/fjoin.cpp +++ b/src/modules/m_spanningtree/fjoin.cpp @@ -129,7 +129,7 @@ CmdResult CommandFJoin::Handle(User* srcuser, Params& params) if (!chan) { if (channel[0] != '#') - throw ProtocolException("Malformed channel name in FJOIN '" + channel + '"'); + throw ProtocolException("Malformed channel name in FJOIN: " + channel); chan = new Channel(channel, TS); } |
