Changeset 8240840 for irc_send.c


Ignore:
Timestamp:
2010-04-11T22:22:17Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
57119e8
Parents:
ffa1173
Message:

Don't send the topic at join time if there is none. This seems to be the
standard.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_send.c

    rffa1173 r8240840  
    150150                irc_write( irc, ":%s MODE %s +%s", irc->root->host, ic->name, ic->mode );
    151151                irc_send_names( ic );
    152                 irc_send_topic( ic, FALSE );
     152                if( ic->topic && *ic->topic )
     153                        irc_send_topic( ic, FALSE );
    153154        }
    154155}
Note: See TracChangeset for help on using the changeset viewer.