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}",
it.name,
null,
null,
"Unknown",
SChapter.create()
)
chapters.add(chapter)

View file

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

View file

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