We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f045b18 commit 31a624dCopy full SHA for 31a624d
server/src/main/kotlin/suwayomi/tachidesk/manga/model/table/MangaTable.kt
@@ -66,7 +66,10 @@ enum class MangaStatus(val value: Int) {
66
UNKNOWN(0),
67
ONGOING(1),
68
COMPLETED(2),
69
- LICENSED(3);
+ LICENSED(3),
70
+ PUBLISHING_FINISHED(4),
71
+ CANCELLED(5),
72
+ ON_HIATUS(6);
73
74
companion object {
75
fun valueOf(value: Int): MangaStatus = values().find { it.value == value } ?: UNKNOWN
0 commit comments