diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/fe-common/core/fe-channels.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/fe-common/core/fe-channels.c b/src/fe-common/core/fe-channels.c index a2c86e33..e25c3dc8 100644 --- a/src/fe-common/core/fe-channels.c +++ b/src/fe-common/core/fe-channels.c @@ -463,10 +463,11 @@ void fe_channels_nicklist(CHANNEL_REC *channel, int flags) g_slist_free(nicklist); /* display the nicks */ - printformat(channel->server, channel->name, - MSGLEVEL_CRAP, TXT_NAMES, channel->name, ""); - if ((flags & CHANNEL_NICKLIST_FLAG_COUNT) == 0) + if ((flags & CHANNEL_NICKLIST_FLAG_COUNT) == 0) { + printformat(channel->server, channel->name, + MSGLEVEL_CRAP, TXT_NAMES, channel->name, ""); display_sorted_nicks(channel, sorted); + } g_slist_free(sorted); printformat(channel->server, channel->name, |