diff options
| author | 2019-01-02 17:31:31 +0000 | |
|---|---|---|
| committer | 2019-01-02 20:28:46 +0000 | |
| commit | aafc03bdfc34c9426df44938403c92dbbbc0568e (patch) | |
| tree | 9213bee0804ad12bfdb75972597a4fce0420b63f /src/modules/m_spanningtree/protocolinterface.cpp | |
| parent | Strip message tags when talking with 1202 protocol servers. (diff) | |
Fix message tags not being broadcast across the network.
Diffstat (limited to 'src/modules/m_spanningtree/protocolinterface.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/protocolinterface.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/protocolinterface.cpp b/src/modules/m_spanningtree/protocolinterface.cpp index e54a528d9..56b9370ad 100644 --- a/src/modules/m_spanningtree/protocolinterface.cpp +++ b/src/modules/m_spanningtree/protocolinterface.cpp @@ -111,7 +111,8 @@ void SpanningTreeProtocolInterface::SendMessage(Channel* target, char status, co { const char* cmd = (msgtype == MSG_PRIVMSG ? "PRIVMSG" : "NOTICE"); CUList exempt_list; - Utils->SendChannelMessage(ServerInstance->Config->GetSID(), target, text, status, exempt_list, cmd); + ClientProtocol::TagMap tags; + Utils->SendChannelMessage(ServerInstance->Config->GetSID(), target, text, status, tags, exempt_list, cmd); } void SpanningTreeProtocolInterface::SendMessage(User* target, const std::string& text, MessageType msgtype) |
