Comick: Fix dateFormat (#3342)

fix dateFormat
This commit is contained in:
bapeey 2024-06-02 01:54:14 -05:00 committed by GitHub
parent 27a68685f1
commit 97ea2a0a77
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -7,7 +7,7 @@ import java.util.Locale
import java.util.TimeZone
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")
}
}