Skip to content

Commit

Permalink
removed unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
F0903 committed Aug 14, 2021
1 parent f5a5788 commit 9467d42
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,9 @@ function autoUpdate() {
console.log("Found available update")
);

autoUpdater.addListener(
"update-downloaded",
(ev, relNotes, relName, relDate) => {
console.log(`Downloaded update ${relName}`);
}
);
autoUpdater.addListener("update-downloaded", (ev, relNotes, relName) => {
console.log(`Downloaded update ${relName}`);
});
}

function handleSquirrelStartupEvent() {
Expand Down

0 comments on commit 9467d42

Please sign in to comment.