presence: send..._with_capability...(): don't send if the client does not have the capab but isn't on a channel
This commit is contained in:
parent
9def763407
commit
2914055be3
1 changed files with 2 additions and 2 deletions
|
@ -817,7 +817,7 @@ sendto_common_channels_local_with_capability(struct Client *user, int capability
|
|||
/* this can happen when the user isnt in any channels, but we still
|
||||
* need to send them the data, ie a nick change
|
||||
*/
|
||||
if(MyConnect(user) && (user->serial != current_serial))
|
||||
if(MyConnect(user) && (user->serial != current_serial) && IsCapable(user, capability))
|
||||
send_linebuf(user, &linebuf);
|
||||
|
||||
rb_linebuf_donebuf(&linebuf);
|
||||
|
@ -936,7 +936,7 @@ sendto_common_channels_local_with_capability_butone(struct Client *user, int cap
|
|||
/* this can happen when the user isnt in any channels, but we still
|
||||
* need to send them the data, ie a nick change
|
||||
*/
|
||||
if(MyConnect(user) && (user->serial != current_serial))
|
||||
if(MyConnect(user) && (user->serial != current_serial) && IsCapable(user, capability))
|
||||
send_linebuf(user, &linebuf);
|
||||
|
||||
rb_linebuf_donebuf(&linebuf);
|
||||
|
|
Loading…
Reference in a new issue