diff options
| author | 2025-03-22 14:29:12 +0000 | |
|---|---|---|
| committer | 2025-03-22 14:37:15 +0000 | |
| commit | 30d0f2827215f635f4cdefed8300c1c085ae953c (patch) | |
| tree | 7fc4837accfb8d7bed95449eeb816e84bfa87ea6 /modules/hideoper.cpp | |
| parent | Allow reloading the geolocation database with a module rehash. (diff) | |
| parent | Allow using the long duration format in the xline message. (diff) | |
Merge branch 'insp4' into master.
Diffstat (limited to 'modules/hideoper.cpp')
| -rw-r--r-- | modules/hideoper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/hideoper.cpp b/modules/hideoper.cpp index 36b87a69a..51a09d772 100644 --- a/modules/hideoper.cpp +++ b/modules/hideoper.cpp @@ -157,7 +157,7 @@ public: std::string extra; if (oper->IsAway()) { - const std::string awayperiod = Duration::ToHuman(ServerInstance->Time() - oper->away->time, true); + const std::string awayperiod = Duration::ToLongString(ServerInstance->Time() - oper->away->time, true); const std::string awaytime = Time::ToString(oper->away->time); extra = FMT::format(": away for {} [since {}] ({})", awayperiod, awaytime, oper->away->message); @@ -166,7 +166,7 @@ public: auto* loper = IS_LOCAL(oper); if (loper) { - const std::string idleperiod = Duration::ToHuman(ServerInstance->Time() - loper->idle_lastmsg, true); + const std::string idleperiod = Duration::ToLongString(ServerInstance->Time() - loper->idle_lastmsg, true); const std::string idletime = Time::ToString(loper->idle_lastmsg); extra += FMT::format("{} idle for {} [since {}]", extra.empty() ? ':' : ',', idleperiod, idletime); |
