diff options
| author | 2021-05-10 15:13:47 +0100 | |
|---|---|---|
| committer | 2021-05-10 15:15:51 +0100 | |
| commit | af023bead14b3306c0f7223848f9fd76dd83aae4 (patch) | |
| tree | 8dc7ec7f1d035a2a4a4403a380d270552b893021 /src/modules/m_spanningtree/capab.cpp | |
| parent | Fix the to_string implementation of ConvToStr. (diff) | |
Use the contents of the link data map when using the 1206 protocol.
Still to do:
- Extract URL encoding to inspstring.
- Use CompareLinkData when using the 1206 protocol.
- Show friendlier messages when a link compatibility is encountered.
Diffstat (limited to 'src/modules/m_spanningtree/capab.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/capab.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/capab.cpp b/src/modules/m_spanningtree/capab.cpp index aa80d4f37..aaecc64dd 100644 --- a/src/modules/m_spanningtree/capab.cpp +++ b/src/modules/m_spanningtree/capab.cpp @@ -61,8 +61,7 @@ namespace modname.assign(name.substr(startpos, endpos - startpos)); } - Module::LinkData data; - module->GetLinkData(data, modules[modname]); + modules[modname] = Utils->BuildLinkString(protocol, module); } return modules; } |
