aboutsummaryrefslogtreecommitdiffstats
path: root/src/configreader.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2024-08-18 16:48:40 +0100
committerGravatar Sadie Powell2024-08-18 16:48:40 +0100
commit00665cf5d69a723275a4f58e4b3e3e9af7316226 (patch)
treecd8c92b7cda60e5099b3226169782b48f8be6235 /src/configreader.cpp
parentUpdate the example configs for <servicesintegration:disablemodes>. (diff)
parentAdd Numeric::push_fmt(...) as shorthand for push(INSP_FORMAT(...)). (diff)
Merge branch 'insp4' into master.
Diffstat (limited to 'src/configreader.cpp')
-rw-r--r--src/configreader.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp
index f73708717..37a180ec6 100644
--- a/src/configreader.cpp
+++ b/src/configreader.cpp
@@ -516,7 +516,8 @@ void ServerConfig::Apply(ServerConfig* old, const std::string& useruid)
// If a user is rehashing, tell them directly
if (user)
- user->WriteRemoteNotice(fmt::format("*** {}", line));
+ user->WriteRemoteNotice("*** {}", line);
+
// Also tell opers
ServerInstance->SNO.WriteGlobalSno('r', line);
}