diff options
| author | 2019-01-02 20:21:21 +0000 | |
|---|---|---|
| committer | 2019-01-02 20:28:48 +0000 | |
| commit | e433401fb883584d32b9b8159370ee57823b01bf (patch) | |
| tree | 9031adea3ee5a5675bb94aac0498ee45d0ddcee1 /src/modules/m_spanningtree/postcommand.cpp | |
| parent | Fix message tags not being broadcast across the network. (diff) | |
Fix a crash when trying to use ROUTE_TYPE_MESSAGE with no message.
Diffstat (limited to 'src/modules/m_spanningtree/postcommand.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/postcommand.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/postcommand.cpp b/src/modules/m_spanningtree/postcommand.cpp index 448bb3b54..d3eab825f 100644 --- a/src/modules/m_spanningtree/postcommand.cpp +++ b/src/modules/m_spanningtree/postcommand.cpp @@ -101,7 +101,10 @@ void SpanningTreeUtilities::RouteCommand(TreeServer* origin, CommandBase* thiscm return; // TODO OnBuildExemptList hook was here CUList exempts; - SendChannelMessage(user->uuid, c, parameters[1], pfx, parameters.GetTags(), exempts, command.c_str(), origin ? origin->GetSocket() : NULL); + std::string message; + if (parameters.size() >= 2) + message.assign(parameters[1]); + SendChannelMessage(user->uuid, c, message, pfx, parameters.GetTags(), exempts, command.c_str(), origin ? origin->GetSocket() : NULL); } else if (dest[0] == '$') { |
