fix: null scanlator

This commit is contained in:
rebel onion 2025-01-04 05:39:37 -06:00
parent 19740c82f9
commit 495322547e
3 changed files with 3 additions and 3 deletions

View file

@ -260,7 +260,7 @@ class DownloadCompat {
"$mangaLink/${it.name}", "$mangaLink/${it.name}",
it.name, it.name,
null, null,
null, "Unknown",
SChapter.create() SChapter.create()
) )
chapters.add(chapter) chapters.add(chapter)

View file

@ -499,7 +499,7 @@ class DynamicMangaParser(extension: MangaExtension.Installed) : MangaParser() {
sChapter.url, sChapter.url,
sChapter.name, sChapter.name,
null, null,
sChapter.scanlator, sChapter.scanlator ?: "Unknown",
sChapter, sChapter,
sChapter.date_upload sChapter.date_upload
) )

View file

@ -79,7 +79,7 @@ data class MangaChapter(
//Self-Descriptive //Self-Descriptive
val title: String? = null, val title: String? = null,
val description: String? = null, val description: String? = null,
val scanlator: String? = null, val scanlator: String,
val sChapter: SChapter, val sChapter: SChapter,
val date: Long? = null, val date: Long? = null,
) )