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:
@@ -294,7 +294,7 @@ class Updater : IUpdater {
|
||||
}
|
||||
}
|
||||
.filter {
|
||||
if (serverConfig.excludeNotStarted.value) {
|
||||
if (it.initialized && serverConfig.excludeNotStarted.value) {
|
||||
it.lastReadAt != null
|
||||
} else {
|
||||
true
|
||||
|
||||
Reference in New Issue
Block a user