Skip to content

Commit 31a624d

Browse files
authored
Add last bit of code needed for Extensions Lib 1.3 (#330)
1 parent f045b18 commit 31a624d

File tree

1 file changed

+4
-1
lines changed
  • server/src/main/kotlin/suwayomi/tachidesk/manga/model/table

1 file changed

+4
-1
lines changed

server/src/main/kotlin/suwayomi/tachidesk/manga/model/table/MangaTable.kt

+4-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,10 @@ enum class MangaStatus(val value: Int) {
6666
UNKNOWN(0),
6767
ONGOING(1),
6868
COMPLETED(2),
69-
LICENSED(3);
69+
LICENSED(3),
70+
PUBLISHING_FINISHED(4),
71+
CANCELLED(5),
72+
ON_HIATUS(6);
7073

7174
companion object {
7275
fun valueOf(value: Int): MangaStatus = values().find { it.value == value } ?: UNKNOWN

0 commit comments

Comments
 (0)