Fixed picking up wrong locale for dates

This commit is contained in:
Viktor De Pasquale 2019-05-10 16:41:31 +02:00
parent 4f9e8d2e8a
commit 7f55e0f05b

View File

@ -3,7 +3,6 @@ package com.topjohnwu.magisk.utils
import java.text.DateFormat
import java.text.ParseException
import java.text.SimpleDateFormat
import java.util.*
val now get() = System.currentTimeMillis()
@ -14,7 +13,7 @@ fun String.toTime(format: DateFormat) = try {
-1L
}
private val locale get() = Locale.getDefault()
private val locale get() = LocaleManager.locale
val timeFormatFull by lazy { SimpleDateFormat("yyyy/MM/dd_HH:mm:ss", locale) }
val timeFormatStandard by lazy { SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'", locale) }
val timeFormatMedium by lazy { DateFormat.getDateInstance(DateFormat.MEDIUM, LocaleManager.locale) }