From a152b60059549dbc5e465ab522a729da6f4b74f1 Mon Sep 17 00:00:00 2001 From: HJfod Date: Sun, 3 Mar 2024 00:45:26 +0200 Subject: [PATCH] change full date format to unambiguous Mon DD YYYY --- loader/src/server/Server.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/loader/src/server/Server.cpp b/loader/src/server/Server.cpp index 904787a6..b54f359c 100644 --- a/loader/src/server/Server.cpp +++ b/loader/src/server/Server.cpp @@ -96,8 +96,7 @@ std::string ServerDateTime::toAgoString() const { if (len < 31) { return fmtPlural(len, "day"); } - // todo: will our pissbaby american users beg us to add an option for their stupid ass incorrect date format - return fmt::format("{:&d.%m.&Y}", value); + return fmt::format("{:%b %d %Y}", value); } Result ServerDateTime::parse(std::string const& str) {