diff options
| author | 2024-08-18 16:48:40 +0100 | |
|---|---|---|
| committer | 2024-08-18 16:48:40 +0100 | |
| commit | 00665cf5d69a723275a4f58e4b3e3e9af7316226 (patch) | |
| tree | cd8c92b7cda60e5099b3226169782b48f8be6235 /src/configreader.cpp | |
| parent | Update the example configs for <servicesintegration:disablemodes>. (diff) | |
| parent | Add 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.cpp | 3 |
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); } |
