mirror of
https://github.com/znc/znc.git
synced 2026-05-02 11:32:29 +02:00
Filter out server-dependent caps in CAP NEW using blacklist too
This commit is contained in:
@@ -1070,7 +1070,7 @@ void CClient::SetTagSupport(const CString& sTag, bool bState) {
|
||||
}
|
||||
|
||||
void CClient::NotifyServerDependentCap(const CString& sCap, bool bValue, const CString& sValue) {
|
||||
if (bValue) {
|
||||
if (bValue && !CZNC::Get().GetClientCapBlacklist().count(sCap)) {
|
||||
if (HasCapNotify()) {
|
||||
if (HasCap302() && !sValue.empty()) {
|
||||
PutClient(":irc.znc.in CAP " + GetNick() + " NEW :" + sCap + "=" + sValue);
|
||||
|
||||
Reference in New Issue
Block a user