diff options
| author | 2023-05-30 02:38:25 +0100 | |
|---|---|---|
| committer | 2023-05-30 02:38:25 +0100 | |
| commit | ea85c0c6bad664e241e9d407e8ae10c7971a66c2 (patch) | |
| tree | e3ce7b3a0b90e39959a14fdabaa4a58ce61d688e /src/modules/m_swhois.cpp | |
| parent | Merge branch 'insp3' into master. (diff) | |
Fix casing of metadata in function and event names.
Metadata is one word not two so it shouldn't be capitalised like this.
Diffstat (limited to 'src/modules/m_swhois.cpp')
| -rw-r--r-- | src/modules/m_swhois.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_swhois.cpp b/src/modules/m_swhois.cpp index 52524ea7d..668761bf2 100644 --- a/src/modules/m_swhois.cpp +++ b/src/modules/m_swhois.cpp @@ -143,7 +143,7 @@ public: cmd.swhois.Unset(user); } - void OnDecodeMetaData(Extensible* target, const std::string& extname, const std::string&) override + void OnDecodeMetadata(Extensible* target, const std::string& extname, const std::string&) override { if (target && target->extype == ExtensionType::USER && irc::equals(extname, "swhois")) cmd.operblock.Unset(static_cast<User*>(target)); |
