diff options
| author | 2020-12-20 03:04:21 +0000 | |
|---|---|---|
| committer | 2020-12-20 03:05:29 +0000 | |
| commit | 6cfabb0064cab52bbbab59974e53dc0fa1954da7 (patch) | |
| tree | aa755e92103730ba6428332b4094578cde91cc67 /src/modules/m_ircv3_batch.cpp | |
| parent | Fix an inverted condition in the previous commit. (diff) | |
Hide the server name/desc better when <options:hideserver> is set.
Diffstat (limited to 'src/modules/m_ircv3_batch.cpp')
| -rw-r--r-- | src/modules/m_ircv3_batch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_ircv3_batch.cpp b/src/modules/m_ircv3_batch.cpp index bbb78557d..197ee3ebe 100644 --- a/src/modules/m_ircv3_batch.cpp +++ b/src/modules/m_ircv3_batch.cpp @@ -26,7 +26,7 @@ class BatchMessage : public ClientProtocol::Message { public: BatchMessage(const IRCv3::Batch::Batch& batch, bool start) - : ClientProtocol::Message("BATCH", ServerInstance->Config->ServerName) + : ClientProtocol::Message("BATCH", ServerInstance->Config->GetServerName()) { char c = (start ? '+' : '-'); PushParam(std::string(1, c) + batch.GetRefTagStr()); |
