Comick: Fix dateFormat (#3342)

fix dateFormat
This commit is contained in:
bapeey 2024-06-02 01:54:14 -05:00 committed by Draff
parent 60f5f67479
commit 7d55908956
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext { ext {
extName = 'Comick' extName = 'Comick'
extClass = '.ComickFactory' extClass = '.ComickFactory'
extVersionCode = 45 extVersionCode = 46
isNsfw = true isNsfw = true
} }

View File

@ -7,7 +7,7 @@ import java.util.Locale
import java.util.TimeZone import java.util.TimeZone
private val dateFormat by lazy { private val dateFormat by lazy {
SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'", Locale.ENGLISH).apply { SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssXXX", Locale.ENGLISH).apply {
timeZone = TimeZone.getTimeZone("UTC") timeZone = TimeZone.getTimeZone("UTC")
} }
} }