diff --git a/komga/src/main/kotlin/org/gotson/komga/interfaces/rest/ReadListController.kt b/komga/src/main/kotlin/org/gotson/komga/interfaces/rest/ReadListController.kt index d91c9cb79..49e286433 100644 --- a/komga/src/main/kotlin/org/gotson/komga/interfaces/rest/ReadListController.kt +++ b/komga/src/main/kotlin/org/gotson/komga/interfaces/rest/ReadListController.kt @@ -309,7 +309,10 @@ class ReadListController( BookSearchWithReadProgress(), UnpagedSorted(Sort.by(Sort.Order.asc("readList.number"))) ).filterIndexed { index, _ -> index < readProgress.lastBookRead } - .forEach { book -> bookLifecycle.markReadProgressCompleted(book.id, principal.user) } + .forEach { book -> + if (book.readProgress?.completed != true) + bookLifecycle.markReadProgressCompleted(book.id, principal.user) + } } ?: throw ResponseStatusException(HttpStatus.NOT_FOUND) }