reduce useless downloads

This commit is contained in:
Kodi Craft 2025-03-25 19:14:15 +01:00
parent 86d335f53e
commit 51f79d4749
Signed by: kodi
GPG Key ID: 69D9EED60B242822

View File

@ -58,7 +58,7 @@ local function main()
local destfile = fs.open(v.dest, "r")
local filehash = hash.sha256(destfile.readAll() .. "\n") -- newline is weird hack because of awkward hashes
destfile.close()
if filehash ~= v.sha256 then
if filehash ~= v.hash then
toDownload[#toDownload+1] = v
end
end