diff options
| author | 2014-01-21 18:14:02 +0100 | |
|---|---|---|
| committer | 2014-01-21 18:14:02 +0100 | |
| commit | fead8af2b767cb5591536a3c98babf6b35194a66 (patch) | |
| tree | 4bc145eb6869e020a20cf463e8d0bc2d4dc9c396 /src/modules/m_spanningtree/postcommand.cpp | |
| parent | Add m_starttls and remove it from m_ssl_gnutls, which allows it to work with ... (diff) | |
m_spanningtree Fix routing of ROUTE_TYPE_MESSAGE messages
Diffstat (limited to 'src/modules/m_spanningtree/postcommand.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/postcommand.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/postcommand.cpp b/src/modules/m_spanningtree/postcommand.cpp index a059bcb5f..9f90f3458 100644 --- a/src/modules/m_spanningtree/postcommand.cpp +++ b/src/modules/m_spanningtree/postcommand.cpp @@ -100,7 +100,7 @@ void SpanningTreeUtilities::RouteCommand(TreeServer* origin, CommandBase* thiscm { // user target? User* d = ServerInstance->FindNick(dest); - if (!d) + if (!d || IS_LOCAL(d)) return; TreeServer* tsd = TreeServer::Get(d)->GetRoute(); if (tsd == origin) |
