summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Mittendrein <git@maxmitti.tk>2016-06-15 23:02:08 +0200
committerMarkus Mittendrein <git@maxmitti.tk>2016-06-15 23:02:08 +0200
commit5b83caec50d86f976b31579b1051caa5f5a33c9a (patch)
treeb2c1071008c5a98e17b9932e031451bbd52df63a
parent518e30840933c14989b5cc690acd899d1fa25c52 (diff)
downloadmanager-5b83caec50d86f976b31579b1051caa5f5a33c9a.tar.gz
manager-5b83caec50d86f976b31579b1051caa5f5a33c9a.zip
Set CTCP SOURCE reply to "Currently unavailable" and remove it from
CLIENTINFO
-rw-r--r--src/crsm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crsm.cpp b/src/crsm.cpp
index 19dc775..8f0b13e 100644
--- a/src/crsm.cpp
+++ b/src/crsm.cpp
@@ -1808,7 +1808,7 @@ void CRSM::applyConfig()
}
if(connection != nullptr)
{
- connection->setCtcpReplies({{"VERSION", Config.IRC.CtcpVersion}});
+ connection->setCtcpReplies({{"VERSION", Config.IRC.CtcpVersion}, {"SOURCE", "Currently unavailable"}, {"CLIENTINFO", "CLIENTINFO PING TIME VERSION"}});
}
}
else