summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2025-03-07 12:34:19 +0000
committerSadie Powell <sadie@witchery.services>2025-03-07 12:34:19 +0000
commit9e37a643f13a8e6b5b8468f245f21fd23238f058 (patch)
treedbe6adb7ae298814c3c8350fa7cc0433259b0e79 /modules
parentb30bfb5d2b926fccd72dac7481486b66e203f2b7 (diff)
Fix some minor issues with db_atheme error messages.
Diffstat (limited to 'modules')
-rw-r--r--modules/database/db_atheme.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/database/db_atheme.cpp b/modules/database/db_atheme.cpp
index 912e7fd2c..79d924090 100644
--- a/modules/database/db_atheme.cpp
+++ b/modules/database/db_atheme.cpp
@@ -1072,7 +1072,7 @@ private:
ExtensibleRef<MiscData> extref("cs_set_misc:" + key.upper());
if (!extref)
{
- Log(this) << "Unknown public metadata for " << ci->name << ": " << key << " = " << value;
+ Log(this) << "Unknown public channel metadata for " << ci->name << ": " << key << " = " << value;
return true;
}
@@ -1198,7 +1198,7 @@ private:
ExtensibleRef<MiscData> extref("ns_set_misc:" + key.upper());
if (!extref)
{
- Log(this) << "Unknown public channel metadata for " << nc->display << ": " << key << " = " << value;
+ Log(this) << "Unknown public account metadata for " << nc->display << ": " << key << " = " << value;
return true;
}