Fix second -> year unit converter factor

This commit is contained in:
MM20
2025-10-11 14:29:46 +02:00
parent e0d792328b
commit 167500233e

View File

@@ -34,7 +34,7 @@ internal class TimeConverter(context: Context) : SimpleFactorConverter() {
R.plurals.unit_day
),
MeasureUnitWithFactor(
1.0 / (60 * 60 * 24 * 365),
1.0 / 31_557_600,
context.getString(R.string.unit_year_symbol),
R.plurals.unit_year
)