mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
+
This commit is contained in:
parent
d8afc4e598
commit
020074621e
1 changed files with 6 additions and 2 deletions
|
@ -1627,8 +1627,12 @@ case "_notice_invitation":
|
|||
vars["_nick_place"] : vars["_place"]);
|
||||
|
||||
// same filtering code as couple lines further below
|
||||
if (( IS_NEWBIE || !itsme && FILTERED(source)) &&
|
||||
(!profile || profile[PPL_NOTIFY] <= PPL_NOTIFY_PENDING)) {
|
||||
if ((
|
||||
#ifndef _flag_enable_unauthenticated_message_private
|
||||
IS_NEWBIE ||
|
||||
#endif
|
||||
(!itsme && FILTERED(source)) &&
|
||||
(!profile || profile[PPL_NOTIFY] <= PPL_NOTIFY_PENDING))) {
|
||||
sendmsg(source, "_failure_filter_strangers", 0,
|
||||
([ "_nick" : MYNICK ]) );
|
||||
unless (boss(source))
|
||||
|
|
Loading…
Reference in a new issue