Start downloader after a library update. It should help with some catalogue issues

This commit is contained in:
inorichi
2017-12-02 17:29:05 +01:00
parent 182bf5f2bd
commit 34a40b0131
3 changed files with 11 additions and 5 deletions
@@ -333,7 +333,9 @@ class LibraryUpdateService(
val dbChapters = chapters.map {
mangaChapters.find { mangaChapter -> mangaChapter.url == it.url }!!
}
downloadManager.downloadChapters(manga, dbChapters)
// We don't want to start downloading while the library is updating, because websites
// may don't like it and they could ban the user.
downloadManager.downloadChapters(manga, dbChapters, false)
}
/**