- Timestamp:
- 2018-03-10T11:30:39Z (7 years ago)
- Children:
- 5447c59
- Parents:
- 3f44e43 (diff), 4a9c6b0 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_im.c
r3f44e43 r7a9d968 89 89 90 90 if (bu->flags & BEE_USER_LOCAL) { 91 char *s = set_getstr(&bee->set, "handle_unknown"); 92 93 if (strcmp(s, "add_private") == 0) { 91 char *s = set_getstr(&bu->ic->acc->set, "handle_unknown") ? : 92 set_getstr(&bee->set, "handle_unknown"); 93 94 if (g_strcasecmp(s, "add_private") == 0) { 94 95 iu->last_channel = NULL; 95 } else if ( strcmp(s, "add_channel") == 0) {96 } else if (g_strcasecmp(s, "add_channel") == 0) { 96 97 iu->last_channel = irc->default_channel; 97 98 } … … 634 635 } 635 636 636 if (ic->flags & IRC_CHANNEL_JOINED) {637 irc_channel_printf(ic, "Cleaning up channel, bye!");638 }639 640 637 ic->data = NULL; 641 638 c->ui_data = NULL;
Note: See TracChangeset
for help on using the changeset viewer.