]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_ircv3_batch.cpp
Fix the cloaking module on C++98 compilers.
[user/henk/code/inspircd.git] / src / modules / m_ircv3_batch.cpp
index 91ff0b140360b1cf44342b5e6a6419b5bdf27b5a..aa464f9fe3cfb07666d2ef7062406ca0a72158ce 100644 (file)
@@ -1,7 +1,8 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
- *   Copyright (C) 2016 Attila Molnar <attilamolnar@hush.com>
+ *   Copyright (C) 2018-2020 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2018 Attila Molnar <attilamolnar@hush.com>
  *
  * This file is part of InspIRCd.  InspIRCd is free software: you can
  * redistribute it and/or modify it under the terms of the GNU General Public
@@ -25,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());
@@ -212,7 +213,7 @@ class ModuleIRCv3Batch : public Module
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Provides the batch IRCv3 extension", VF_VENDOR);
+               return Version("Provides the IRCv3 batch client capability.", VF_VENDOR);
        }
 };