Skip to content

Commit

Permalink
Always update uninitialized manga in global update (#997)
Browse files Browse the repository at this point in the history
Manga can be added to the library while they have not been initialized yet.
In this case, depending on the manga exclusion setting, they will never be updated automatically unless they get refreshed once manually.
  • Loading branch information
schroda authored Jul 28, 2024
1 parent fbcd55d commit 06bfc33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ class Updater : IUpdater {
}
}
.filter {
if (serverConfig.excludeNotStarted.value) {
if (it.initialized && serverConfig.excludeNotStarted.value) {
it.lastReadAt != null
} else {
true
Expand Down

0 comments on commit 06bfc33

Please sign in to comment.