MangAdventure: allow null volumes (#12380)
This commit is contained in:
parent
8717ee0a60
commit
8d2c9c79ed
|
@ -33,7 +33,7 @@ internal data class Chapter(
|
|||
private val id: Int,
|
||||
val title: String,
|
||||
val number: Float,
|
||||
val volume: Int,
|
||||
val volume: Int?,
|
||||
val published: String,
|
||||
val final: Boolean,
|
||||
val series: String,
|
||||
|
|
|
@ -9,7 +9,7 @@ class MangAdventureGenerator : ThemeSourceGenerator {
|
|||
|
||||
override val themeClass = "MangAdventure"
|
||||
|
||||
override val baseVersionCode = 8
|
||||
override val baseVersionCode = 9
|
||||
|
||||
override val sources = listOf(
|
||||
SingleLang("Arc-Relight", "https://arc-relight.com", "en", className = "ArcRelight"),
|
||||
|
|
Loading…
Reference in New Issue