diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2016-06-15 23:02:08 +0200 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2016-06-15 23:02:08 +0200 |
| commit | 5b83caec50d86f976b31579b1051caa5f5a33c9a (patch) | |
| tree | b2c1071008c5a98e17b9932e031451bbd52df63a /src | |
| parent | 518e30840933c14989b5cc690acd899d1fa25c52 (diff) | |
| download | manager-5b83caec50d86f976b31579b1051caa5f5a33c9a.tar.gz manager-5b83caec50d86f976b31579b1051caa5f5a33c9a.zip | |
Set CTCP SOURCE reply to "Currently unavailable" and remove it from
CLIENTINFO
Diffstat (limited to 'src')
| -rw-r--r-- | src/crsm.cpp | 2 |
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 |
