mirror of
https://github.com/mihonapp/mihon.git
synced 2025-11-09 18:48:55 +01:00
Don't use localized numbers for downloaded image filenames
Probably fixes #10258
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user