diff options
| author | 2023-05-30 02:38:25 +0100 | |
|---|---|---|
| committer | 2023-05-30 02:38:25 +0100 | |
| commit | ea85c0c6bad664e241e9d407e8ae10c7971a66c2 (patch) | |
| tree | e3ce7b3a0b90e39959a14fdabaa4a58ce61d688e /src/extensible.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/extensible.cpp')
| -rw-r--r-- | src/extensible.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extensible.cpp b/src/extensible.cpp index dbecdd209..c6799bba2 100644 --- a/src/extensible.cpp +++ b/src/extensible.cpp @@ -137,7 +137,7 @@ void ExtensionItem::Sync(const Extensible* container, void* item) { const std::string networkstr = ToNetwork(container, item); if (!networkstr.empty()) - ServerInstance->PI->SendMetaData(container, name, networkstr); + ServerInstance->PI->SendMetadata(container, name, networkstr); } void ExtensionItem::FromInternal(Extensible* container, const std::string& value) noexcept |
