set file progress rather than adding

This commit is contained in:
2025-12-01 21:20:55 +00:00
parent 8e840c0966
commit 855eb07d89

View File

@@ -288,7 +288,7 @@ export default class Updater {
else {
// should be the file progress
let fileProgressView = new Uint32Array(rawData);
this._fileProgress += (dataView[3] << 24) |
this._fileProgress = (dataView[3] << 24) |
(dataView[2] << 16) |
(dataView[1] << 8) | dataView[0];
this.sendNextPacket();