diff options
Diffstat (limited to 'src/modules/m_spanningtree/compat.cpp')
-rw-r--r-- | src/modules/m_spanningtree/compat.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree/compat.cpp b/src/modules/m_spanningtree/compat.cpp index b23cf5c02..8a6e6855f 100644 --- a/src/modules/m_spanningtree/compat.cpp +++ b/src/modules/m_spanningtree/compat.cpp @@ -69,6 +69,14 @@ void TreeSocket::WriteLine(std::string line) std::string uid = line.substr(b, c - b); line = ":" + ServerInstance->Config->GetSID() + " SVSNICK " + uid + line.substr(b); } + else if (proto_version < 1202 && command == "AWAY") + { + if (b != std::string::npos) + { + std::string::size_type c = line.find(' ', b + 1); + line.erase(b,c-b); + } + } } } |