diff options
| author | 2013-04-12 17:01:02 +0200 | |
|---|---|---|
| committer | 2013-04-13 17:09:18 +0200 | |
| commit | b9a2b9868d7bd94882e8b1c7a99b967e581240c8 (patch) | |
| tree | b29e22e624c3b32c897b41b1c5802005680b620a /src/modules/m_spanningtree/protocolinterface.cpp | |
| parent | m_spanningtree Introduce IJOIN and RESYNC (diff) | |
m_spanningtree Add channel timestamp to channel METADATA
Diffstat (limited to 'src/modules/m_spanningtree/protocolinterface.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/protocolinterface.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree/protocolinterface.cpp b/src/modules/m_spanningtree/protocolinterface.cpp index d79765662..d727f588c 100644 --- a/src/modules/m_spanningtree/protocolinterface.cpp +++ b/src/modules/m_spanningtree/protocolinterface.cpp @@ -63,7 +63,10 @@ void SpanningTreeProtocolInterface::SendMetaData(Extensible* target, const std:: if (u) params.push_back(u->uuid); else if (c) + { params.push_back(c->name); + params.push_back(ConvToStr(c->age)); + } else params.push_back("*"); |
