chore: comment
All checks were successful
Open PR on Staging / audit_and_check (pull_request) Successful in 38s

This commit is contained in:
Stixx 2025-01-15 10:45:09 +01:00
parent 28150c424e
commit 5188f27624

View File

@ -297,6 +297,11 @@ export const SignPage = () => {
return
}
/**
* We start iterating through all URLs and fetch the zip. If zip is unreachable,
* or it fails the hash check, we skip to the next one. Iteration will stop
* on the first successful zip, so that's why we do it sequentially.
*/
for (let i = 0; i < zipUrls.length; i++) {
const zipUrl = zipUrls[i]
const isLastZipUrl = i === zipUrls.length - 1