Changeset 617 in code for trunk/downstream.go


Ignore:
Timestamp:
Oct 10, 2021, 10:05:41 AM (4 years ago)
Author:
hubert
Message:

Send back TAGMSGs to self

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/downstream.go

    r616 r617  
    20492049
    20502050                for _, name := range strings.Split(targetsStr, ",") {
     2051                        if dc.network == nil && casemapASCII(name) == dc.nickCM {
     2052                                dc.SendMessage(&irc.Message{
     2053                                        Tags:    msg.Tags.Copy(),
     2054                                        Prefix:  dc.prefix(),
     2055                                        Command: "TAGMSG",
     2056                                        Params:  []string{name},
     2057                                })
     2058                                continue
     2059                        }
     2060
    20512061                        if casemapASCII(name) == serviceNickCM {
    20522062                                continue
Note: See TracChangeset for help on using the changeset viewer.