Skip to content

Commit ffd8cfc

Browse files
authored
Update installer.js
1 parent f89e714 commit ffd8cfc

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

web/installer.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -257,14 +257,12 @@ function install() {
257257
// start polling every 0.5s immediately
258258
const interval = setInterval(() => {
259259
const status = installer.getStatus(); // % progress
260-
console.log("Progress:", status, "%");
261260
loadingImg(status);
262261

263262
// stop when finished
264263
if (status >= 100 || installer.isFinished) {
265264
clearInterval(interval);
266-
console.log("Install finished!");
267-
console.log(installer.getInstallLink());
265+
window.location.href = installer.getInstallLink();
268266
pulse(false);
269267
}
270268
}, 500);

0 commit comments

Comments
 (0)