Changeset 69b94c3 for irc_channel.c


Ignore:
Timestamp:
2015-07-29T21:49:04Z (9 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Children:
8e5751e
Parents:
3ddbd23c (diff), 24de9fa (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge remote-tracking branch 'origin/master' into parson

This includes the auto_join fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_channel.c

    r3ddbd23c r69b94c3  
    445445                        char *acc_s;
    446446
    447                         if (!aj || (ic->flags & IRC_CHANNEL_JOINED)) {
    448                                 /* Only continue if this one's marked as auto_join
    449                                    or if we're in it already. (Possible if the
    450                                    client auto-rejoined it before identyfing.) */
     447                        if (!aj && !(ic->flags & IRC_CHANNEL_JOINED)) {
     448                                /* Only proceed if this one's marked as auto_join
     449                                   or if we're in it already. (Very likely the IRC
     450                                   client auto-(re)joining at reconnect time.) */
    451451                                continue;
    452452                        } else if (!(acc_s = set_getstr(&ic->set, "account"))) {
Note: See TracChangeset for help on using the changeset viewer.