From 9e37a643f13a8e6b5b8468f245f21fd23238f058 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Fri, 7 Mar 2025 12:34:19 +0000 Subject: [PATCH] Fix some minor issues with db_atheme error messages. --- modules/database/db_atheme.cpp | 4 ++-- 1 file 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 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 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; }