diff options
| author | 2019-07-22 12:40:22 +0100 | |
|---|---|---|
| committer | 2019-07-22 12:40:37 +0100 | |
| commit | 9cf381330eab69d7e5bf26684d1ec8075aee60a2 (patch) | |
| tree | 3e4bd5be3bdeecf32708a96b66e5de0d5fcd91fc /src/modules/m_spanningtree/misccommands.cpp | |
| parent | Add a method for swapping user I/O handlers. (diff) | |
Fix some regressions in sending tags between servers.
Diffstat (limited to 'src/modules/m_spanningtree/misccommands.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/misccommands.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/misccommands.cpp b/src/modules/m_spanningtree/misccommands.cpp index 1d4104f28..55c36a3ba 100644 --- a/src/modules/m_spanningtree/misccommands.cpp +++ b/src/modules/m_spanningtree/misccommands.cpp @@ -59,10 +59,9 @@ void CmdBuilder::UpdateTags() } } taglist.push_back(' '); - content.insert(0, taglist); } content.replace(0, tagsize, taglist); - tagsize = content.length(); + tagsize = taglist.length(); } CmdResult CommandSNONotice::Handle(User* user, Params& params) |
