fix: incorrect download progress reporting

pull/607/head
Mykyta Myronenko 2024-08-10 19:29:54 +03:00 committed by GitHub
parent f057abff0f
commit a2f6f84bde
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

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;