diff options
Diffstat (limited to 'src/common/hexchat.c')
-rw-r--r-- | src/common/hexchat.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/hexchat.c b/src/common/hexchat.c index 30e95ca9..274773e7 100644 --- a/src/common/hexchat.c +++ b/src/common/hexchat.c @@ -480,7 +480,10 @@ session_new (server *serv, char *from, int type, int focus) sess->lastact_idx = LACT_NONE; if (from != NULL) - safe_strcpy (sess->channel, from, CHANLEN); + { + safe_strcpy(sess->channel, from, CHANLEN); + safe_strcpy(sess->session_name, from, CHANLEN); + } sess_list = g_slist_prepend (sess_list, sess); |