diff options
| author | 2024-07-20 12:31:31 +0100 | |
|---|---|---|
| committer | 2024-07-20 12:33:37 +0100 | |
| commit | 42fdbb7234628ff95acdb6f3f1d1d2206ad77334 (patch) | |
| tree | a8f3bb09c880d96f886f8a44f4bb0b7119922022 /src/modules/m_spanningtree/netburst.cpp | |
| parent | Implement support for the IRCv3 WebSocket subprotocol names. (diff) | |
Fix broadcasting UID messages to v3 servers.
We have to use the compat layer here as broadcast messages do not
go through the command builder.
Diffstat (limited to 'src/modules/m_spanningtree/netburst.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/netburst.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/netburst.cpp b/src/modules/m_spanningtree/netburst.cpp index 77aa73d83..798987975 100644 --- a/src/modules/m_spanningtree/netburst.cpp +++ b/src/modules/m_spanningtree/netburst.cpp @@ -282,7 +282,7 @@ void TreeSocket::SendUsers(BurstState& bs) if (!user->IsFullyConnected()) continue; - this->WriteLine(CommandUID::Builder(user, this->proto_version != PROTO_INSPIRCD_3)); + this->WriteLine(CommandUID::Builder(user)); if (user->IsOper()) this->WriteLine(CommandOpertype::Builder(user, user->oper)); |
