Iken: remove false scanlator (#8086)

* Iken Remove scanlator

* remove dto
This commit is contained in:
Creepler13 2025-03-18 13:31:06 +01:00 committed by Draff
parent 8a14edfd48
commit 98f7d48324
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 1 additions and 3 deletions

View File

@ -2,4 +2,4 @@ plugins {
id("lib-multisrc") id("lib-multisrc")
} }
baseVersionCode = 7 baseVersionCode = 8

View File

@ -93,7 +93,6 @@ class Chapter(
private val id: Int, private val id: Int,
private val slug: String, private val slug: String,
private val number: JsonPrimitive, private val number: JsonPrimitive,
private val createdBy: Name,
private val createdAt: String, private val createdAt: String,
private val chapterStatus: String, private val chapterStatus: String,
private val isAccessible: Boolean, private val isAccessible: Boolean,
@ -112,7 +111,6 @@ class Chapter(
val seriesSlug = mangaSlug ?: mangaPost.slug val seriesSlug = mangaSlug ?: mangaPost.slug
url = "/series/$seriesSlug/$slug#$id" url = "/series/$seriesSlug/$slug#$id"
name = "${prefix}Chapter $number" name = "${prefix}Chapter $number"
scanlator = createdBy.name
date_upload = try { date_upload = try {
dateFormat.parse(createdAt)!!.time dateFormat.parse(createdAt)!!.time
} catch (_: ParseException) { } catch (_: ParseException) {