Changeset 764 in code for trunk/bridge.go


Ignore:
Timestamp:
Jan 10, 2022, 9:37:55 AM (3 years ago)
Author:
contact
Message:

Don't send RPL_NOTOPIC on JOIN

As per https://modern.ircdocs.horse/#join-message

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bridge.go

    r478 r764  
    1313        }
    1414
    15         sendTopic(dc, ch)
     15        // RPL_NOTOPIC shouldn't be sent on JOIN
     16        if ch.Topic != "" {
     17                sendTopic(dc, ch)
     18        }
    1619        sendNames(dc, ch)
    1720}
Note: See TracChangeset for help on using the changeset viewer.