Localise left over numeric value.

This commit is contained in:
Lucas A 2021-07-30 19:08:27 +02:00
parent 652fe6c413
commit c7e9d09ce3
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ public void ShowInfo(GetSpotlightRankingsResponse response)
{
startDateColumn.Value = dateToString(response.Spotlight.StartDate);
endDateColumn.Value = dateToString(response.Spotlight.EndDate);
mapCountColumn.Value = response.BeatmapSets.Count.ToString();
mapCountColumn.Value = response.BeatmapSets.Count.ToLocalisableString("N0");
participantsColumn.Value = response.Spotlight.Participants?.ToLocalisableString("N0");
}