fix: Fix build

This commit is contained in:
Ahmad Ansori Palembani 2025-01-01 07:35:55 +07:00
parent d02f1bdd11
commit 85af94d810
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6

View file

@ -4,11 +4,11 @@ import eu.kanade.tachiyomi.source.model.SChapter
fun SChapter.toChapter(): ChapterImpl { fun SChapter.toChapter(): ChapterImpl {
return ChapterImpl().apply { return ChapterImpl().apply {
name = this@SChapter.name name = this@toChapter.name
url = this@SChapter.url url = this@toChapter.url
date_upload = this@SChapter.date_upload date_upload = this@toChapter.date_upload
chapter_number = this@SChapter.chapter_number chapter_number = this@toChapter.chapter_number
scanlator = this@SChapter.scanlator scanlator = this@toChapter.scanlator
} }
} }