diff options
author | Timo Sirainen <cras@irssi.org> | 2002-09-18 17:02:58 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-09-18 17:02:58 +0000 |
commit | 777349ecc1685772fd25d315420872ae5375c472 (patch) | |
tree | 0ec9c56811e28258f55d54a54e7a19ae5e967cee | |
parent | fbda75f3b4a48b80002a0a5f299079e85128f9d8 (diff) | |
download | irssi-777349ecc1685772fd25d315420872ae5375c472.zip |
!channels weren't rejoined to correct window after reconnect/cycle.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2928 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | src/fe-common/core/fe-channels.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-common/core/fe-channels.c b/src/fe-common/core/fe-channels.c index ee60a425..ff3f0472 100644 --- a/src/fe-common/core/fe-channels.c +++ b/src/fe-common/core/fe-channels.c @@ -86,7 +86,7 @@ static void sig_disconnected(SERVER_REC *server) CHANNEL_REC *channel = tmp->data; window = window_item_window((WI_ITEM_REC *) channel); - window_bind_add(window, server->tag, channel->visible_name); + window_bind_add(window, server->tag, channel->name); } } |