Update metadata now ignores only completed manga setting
This commit is contained in:
parent
7b28614c37
commit
aebc9a3b9e
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ class LibraryUpdateService : Service() {
|
||||||
db.getFavoriteMangas().executeAsBlocking().distinctBy { it.id }
|
db.getFavoriteMangas().executeAsBlocking().distinctBy { it.id }
|
||||||
}
|
}
|
||||||
|
|
||||||
if (preferences.updateOnlyNonCompleted()) {
|
if (!intent.getBooleanExtra(UPDATE_DETAILS, false) && preferences.updateOnlyNonCompleted()) {
|
||||||
listToUpdate = listToUpdate.filter { it.status != Manga.COMPLETED }
|
listToUpdate = listToUpdate.filter { it.status != Manga.COMPLETED }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue