Kagane: Add Hiatus status (#11613)

Add Hiatus status
This commit is contained in:
Cuong-Tran 2025-11-13 12:54:38 +07:00 committed by Draff
parent 3946637e7b
commit 55ae73a0d6
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'Kagane'
extClass = '.Kagane'
extVersionCode = 10
extVersionCode = 11
isNsfw = true
}

View File

@ -64,6 +64,7 @@ class DetailsDto(
return when (this) {
"ONGOING" -> SManga.ONGOING
"ENDED" -> SManga.COMPLETED
"HIATUS" -> SManga.ON_HIATUS
else -> SManga.UNKNOWN
}
}