1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 20:26:39 +02:00

Fixed logging messages with an empty category to everything

This commit is contained in:
Adam
2011-04-19 23:42:16 -04:00
parent ca169489b2
commit f601b04594
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -670,6 +670,7 @@ log
{
target = "globops"
admin = "operserv/global operserv/mode operserv/kick opeserv/akill operserv/s*line operserv/noop operserv/jupe */forbid nickserv/getpass */drop"
other = "~"
}
/*
+1 -1
View File
@@ -310,7 +310,7 @@ void LogInfo::ProcessMessage(const Log *l)
if (!this->HasType(l->Type))
return;
else if (!l->Category.empty() && !this->HasType(this->GetList(l->Type), l->Category))
else if (!this->HasType(this->GetList(l->Type), l->Category))
return;
if (!this->Sources.empty())