diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-09 23:08:30 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-09 23:08:30 +0100 |
commit | a067771fa1799e689653931f6743b3502182b850 (patch) | |
tree | afe0a0d236deb045a8000405a83609c85a691ef7 /irc_im.c | |
parent | 4e608d6fee8ee39b871338524b6da00aa5a6e86b (diff) |
Per-account channels also exist now.
Diffstat (limited to 'irc_im.c')
-rw-r--r-- | irc_im.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -144,6 +144,8 @@ void bee_irc_channel_update( irc_t *irc, irc_channel_t *ic, irc_user_t *iu ) show = TRUE; else if( icc->type == IRC_CC_TYPE_GROUP ) show = iu->bu->group == icc->group; + else if( icc->type == IRC_CC_TYPE_ACCOUNT ) + show = iu->bu->ic->acc == icc->account; if( !show ) { |