Mark manga complete on mangadex when all chapters are marked in mdlist

(cherry picked from commit b95cca91fc19fedb42fce895e0a5f062e342dc21)

# Conflicts:
#	app/src/main/java/eu/kanade/tachiyomi/data/track/mdlist/MdList.kt
This commit is contained in:
Carlos
2021-01-13 20:10:33 -05:00
committed by Jobobby04
parent 4a268de6dc
commit 5fefefcb23
2 changed files with 10 additions and 2 deletions
@@ -10,6 +10,6 @@ enum class FollowStatus(val int: Int) {
RE_READING(6);
companion object {
fun fromInt(value: Int): FollowStatus = FollowStatus.values().find { it.int == value } ?: UNFOLLOWED
fun fromInt(value: Int): FollowStatus = values().find { it.int == value } ?: UNFOLLOWED
}
}