summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2018-09-26 23:53:29 +0100
committerPeter Powell <petpow@saberuk.com>2018-11-04 10:02:28 +0000
commit39ddf2fb7a4d030fc29a7d421e09394cd70dc9bf (patch)
treeac260c2680c6dbd17a9fa756e9c7b337fd90f764
parent3f0a66ce0636726c5b16c291f59e59f6ae7edaf7 (diff)
Fix exposing the ban reason when an xline is found in the bancache.
-rw-r--r--src/usermanager.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/usermanager.cpp b/src/usermanager.cpp
index 2cb7ad511..f62d28faa 100644
--- a/src/usermanager.cpp
+++ b/src/usermanager.cpp
@@ -117,7 +117,11 @@ void UserManager::AddUser(int socket, ListenSocket* via, irc::sockets::sockaddrs
ServerInstance->Logs->Log("BANCACHE", DEBUG, std::string("BanCache: Positive hit for ") + New->GetIPString());
if (!ServerInstance->Config->MoronBanner.empty())
New->WriteServ("NOTICE %s :*** %s", New->nick.c_str(), ServerInstance->Config->MoronBanner.c_str());
- this->QuitUser(New, b->Reason);
+
+ if (ServerInstance->Config->HideBans)
+ this->QuitUser(New, b->Type + "-Lined", b->Reason.c_str());
+ else
+ this->QuitUser(New, b->Reason);
return;
}
else