Open
Description
I am using BaseDownloadTask and manage queue on my own. Every one of these items is correctly configured NOT TO use multi-connection (because of encryption with FileBufferedOutputStream), even though i can't download them because of below condition:
if (hostRunnable != null && !isSupportSeek) {
throw new IllegalAccessException(
"can't using multi-download when the output stream can't support seek");
}
Why using hostRunnable crashes out entire downloading (no multi-connection)? Can this be fixed soon?