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) {