Skip to content

Commit

Permalink
Fix wrong displayed total size on sophon preload
Browse files Browse the repository at this point in the history
  • Loading branch information
neon-nyan committed Nov 4, 2024
1 parent 74bab3b commit 5fab05d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1100,7 +1100,7 @@ await AddSophonAdditionalVODiffAssetsToList(httpClient, requestedBaseUrl
}

// Get the remote chunk size
_progressPerFileSizeTotal = sophonUpdateAssetList.GetCalculatedDiffSize();
_progressPerFileSizeTotal = sophonUpdateAssetList.GetCalculatedDiffSize(!isPreloadMode);
_progressPerFileSizeCurrent = 0;

// Get the remote total size and current total size
Expand Down

0 comments on commit 5fab05d

Please sign in to comment.