Increase minimum required disk space to download chapters to 200MB (closes #6576)

(cherry picked from commit 45e4092335a83b47c257fd119e33a031d80996b5)
This commit is contained in:
arkon 2022-02-05 17:35:07 -05:00 committed by Jobobby04
parent 255a09abf5
commit f50d23dfe6

View File

@ -569,5 +569,5 @@ class Downloader(
}
}
// Arbitrary minimum required space to start a download: 50 MB
private const val MIN_DISK_SPACE = 50 * 1024 * 1024
// Arbitrary minimum required space to start a download: 200 MB
private const val MIN_DISK_SPACE = 200L * 1024 * 1024