Skip to content

Commit

Permalink
fix: download job stops all together even if 1 entry is failed to cre…
Browse files Browse the repository at this point in the history
…ate directory
  • Loading branch information
cuong-tran committed Nov 5, 2024
1 parent 8c18edc commit 38008d2
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,15 @@ class Downloader(
* @param download the chapter to be downloaded.
*/
private suspend fun downloadChapter(download: Download) {
val mangaDir = provider.getMangaDir(download.manga.title, download.source)
val mangaDir: UniFile
try {
mangaDir = provider.getMangaDir(download.manga.title, download.source)
} catch (error: Exception) {
logcat(LogPriority.ERROR, error)
download.status = Download.State.ERROR
notifier.onError(error.message, download.chapter.name, download.manga.title, download.manga.id)
return
}

val availSpace = DiskUtil.getAvailableStorageSpace(mangaDir)
if (availSpace != -1L && availSpace < MIN_DISK_SPACE) {
Expand Down

0 comments on commit 38008d2

Please sign in to comment.