1
0
mirror of https://github.com/anope/anope.git synced 2026-06-27 01:36:38 +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 -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())