fix: null scanlator
This commit is contained in:
parent
19740c82f9
commit
495322547e
3 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||||
|
|
|
@ -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
|
||||||
)
|
)
|
||||||
|
|
|
@ -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,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue