aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_httpd_stats.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-08-05 12:02:14 +0100
committerGravatar Sadie Powell2023-08-11 12:03:09 +0100
commit681b488fc0ebca964eddf2a54575dc41901bc520 (patch)
tree8d5953e1ecc38e7abc8e4369e71a2f3db2a1744a /src/modules/m_httpd_stats.cpp
parentMove stdalgo::string::{equalsci,tocstr} to utility/string. (diff)
Update usages of stdalgo::string::equalsci to use insp::equalsci.
Diffstat (limited to 'src/modules/m_httpd_stats.cpp')
-rw-r--r--src/modules/m_httpd_stats.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp
index 5733cc9e3..805ca297c 100644
--- a/src/modules/m_httpd_stats.cpp
+++ b/src/modules/m_httpd_stats.cpp
@@ -403,9 +403,9 @@ namespace Stats
bool desc = params.getBool("desc", false);
OrderBy orderby;
- if (stdalgo::string::equalsci(sortmethod, "nick"))
+ if (insp::equalsci(sortmethod, "nick"))
orderby = OB_NICK;
- else if (stdalgo::string::equalsci(sortmethod, "lastmsg"))
+ else if (insp::equalsci(sortmethod, "lastmsg"))
{
orderby = OB_LASTMSG;
// We can only check idle times on local users