From 5cb0e29291121d97c8668dee40af8b9c7a511a01 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 10 Sep 2006 13:23:22 +0000 Subject: Nicer fix git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5195 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_safelist.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/modules') diff --git a/src/modules/m_safelist.cpp b/src/modules/m_safelist.cpp index 3a5d09c36..77cc0715b 100644 --- a/src/modules/m_safelist.cpp +++ b/src/modules/m_safelist.cpp @@ -102,11 +102,10 @@ class ListTimer : public InspTimer bool has_user = (chan && chan->HasUser(u)); if ((chan) && (((!(chan->modes[CM_PRIVATE])) && (!(chan->modes[CM_SECRET]))) || (has_user))) { - if (!match(chan->name, ld->glob.c_str())) - continue; + bool display = match(chan->name, ld->glob.c_str()); long users = chan->GetUserCounter(); - if (users) + if ((users) && (display)) { int counter = snprintf(buffer,MAXBUF,"322 %s %s %ld :[+%s] %s",u->nick,chan->name,users,chan->ChanModes(has_user),chan->topic); /* Increment total plus linefeed */ -- cgit v1.2.3