Merge pull request #607 from Redpenguine/master

fix: incorrect download progress reporting
This commit is contained in:
Yoshifumi Kawai
2024-08-14 19:54:15 +09:00
committed by GitHub

View File

@@ -243,7 +243,7 @@ namespace Cysharp.Threading.Tasks
if (progress != null && handle.IsValid()) if (progress != null && handle.IsValid())
{ {
progress.Report(handle.PercentComplete); progress.Report(handle.GetDownloadStatus().Percent);
} }
return true; return true;
@@ -448,7 +448,7 @@ namespace Cysharp.Threading.Tasks
if (progress != null && handle.IsValid()) if (progress != null && handle.IsValid())
{ {
progress.Report(handle.PercentComplete); progress.Report(handle.GetDownloadStatus().Percent);
} }
return true; return true;