Skip to content

Commit

Permalink
Add last bit of code needed for Extensions Lib 1.3 (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
Syer10 authored Apr 2, 2022
1 parent f045b18 commit 31a624d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ enum class MangaStatus(val value: Int) {
UNKNOWN(0),
ONGOING(1),
COMPLETED(2),
LICENSED(3);
LICENSED(3),
PUBLISHING_FINISHED(4),
CANCELLED(5),
ON_HIATUS(6);

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

0 comments on commit 31a624d

Please sign in to comment.