Throw exception
This code not working What is wrong?
List<BackgroundDownloadConfig> configList = GetConfigList();
foreach (var config in configList)
{
BackgroundDownload.Start(config);
}
Looks like a bug. Is this intermittent issue? Is any of your download very fast to complete?
I believe this should fix an issue with exception: https://github.com/Unity-Technologies/BackgroundDownload/commit/7299ccbe983cbca644d3305268f93f847217e0d0
Always happen (not intermittent) Thanx.
Hey @mousedoc ,
Did 7299ccb fix your issue? I am trying to reproduce the issue, but all files are downloaded successfully with the same approach.
@sidass I haven't checked yet in 7299ccb
When this bug occurs, the .dl file is created and downloaded, but the frame rate drops because of many exceptions.
Due to the too low frame rate, I couldn't check if the download was possible at runtime, but when I moved the application to the background and later checked, I could see some files downloaded.