Don't use localized numbers for downloaded image filenames

Probably fixes #10258
This commit is contained in:
arkon
2023-12-22 19:13:06 -05:00
parent bf3899d04a
commit 19f0175a56
3 changed files with 7 additions and 8 deletions

View File

@@ -140,7 +140,7 @@ private fun TrackerStats(
val meanScoreStr = remember(data.trackedTitleCount, data.meanScore) {
if (data.trackedTitleCount > 0 && !data.meanScore.isNaN()) {
// All other numbers are localized in English
String.format(Locale.ENGLISH, "%.2f ★", data.meanScore)
"%.2f ★".format(Locale.ENGLISH, data.meanScore)
} else {
notApplicable
}