mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-14 19:15:05 -05:00
add comma to download count
This commit is contained in:
parent
f3525035ad
commit
de50b989c7
1 changed files with 1 additions and 1 deletions
|
@ -741,7 +741,7 @@ void ModPopup::onLoadServerInfo(typename server::ServerRequest<server::ServerMod
|
|||
|
||||
// Update server stats
|
||||
for (auto id : std::initializer_list<std::pair<const char*, std::string>> {
|
||||
{ "downloads", std::to_string(data.downloadCount) },
|
||||
{ "downloads", fmt::format(std::locale("en_US.UTF-8"), "{:L}", data.downloadCount) },
|
||||
{ "release-date", timeToString(data.createdAt) },
|
||||
{ "update-date", timeToString(data.updatedAt) },
|
||||
}) {
|
||||
|
|
Loading…
Reference in a new issue