Always update uninitialized manga in global update (#997)

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.
This commit is contained in:
schroda
2024-07-28 21:58:23 +02:00
committed by GitHub
parent fbcd55d6c5
commit 06bfc33e72
@@ -294,7 +294,7 @@ class Updater : IUpdater {
}
}
.filter {
if (serverConfig.excludeNotStarted.value) {
if (it.initialized && serverConfig.excludeNotStarted.value) {
it.lastReadAt != null
} else {
true