Use readableAt

This commit is contained in:
Jobobby04 2023-10-01 16:48:58 -04:00
parent b3ab8895e3
commit d37463cf0f
2 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@ data class ChapterAttributesDto(
val createdAt: String,
val updatedAt: String,
val publishAt: String,
val readableAt: String,
)
@Serializable

View File

@ -242,7 +242,7 @@ class ApiMangaParser(
val name = chapterName.toString()
// Convert from unix time
val dateUpload = MdUtil.parseDate(attributes.publishAt)
val dateUpload = MdUtil.parseDate(attributes.readableAt)
val scanlatorName = networkChapter.relationships
.filter {