diff options
| author | 2013-04-12 17:16:00 +0200 | |
|---|---|---|
| committer | 2013-04-13 17:09:19 +0200 | |
| commit | 75fa56618e2f10782dc66262f964f6146d10bbc3 (patch) | |
| tree | fbb7ce185ebd0400eae4feafe47b32acde585b69 /src/modules/m_spanningtree/protocolinterface.cpp | |
| parent | m_spanningtree Add channel timestamp to channel METADATA (diff) | |
m_spanningtree Add channel timestamp to FTOPIC
Diffstat (limited to 'src/modules/m_spanningtree/protocolinterface.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/protocolinterface.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree/protocolinterface.cpp b/src/modules/m_spanningtree/protocolinterface.cpp index d727f588c..93a138758 100644 --- a/src/modules/m_spanningtree/protocolinterface.cpp +++ b/src/modules/m_spanningtree/protocolinterface.cpp @@ -81,6 +81,7 @@ void SpanningTreeProtocolInterface::SendTopic(Channel* channel, std::string &top parameterlist params; params.push_back(channel->name); + params.push_back(ConvToStr(channel->age)); params.push_back(ConvToStr(ServerInstance->Time())); params.push_back(ServerInstance->Config->ServerName); params.push_back(":" + topic); |
