Skip to content

Commit

Permalink
release v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JustJoostNL committed May 13, 2023
1 parent 559085b commit d87b2a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ representative at an online or offline event.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at <[email protected]>.
reported to the community leaders responsible for enforcement at <[email protected]>.
All complaints will be reviewed and investigated promptly and fairly.

All community leaders are obligated to respect the privacy and security of the
Expand Down
4 changes: 2 additions & 2 deletions electron/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,8 @@ ipcMain.handle("utils:exitApp", () => {
});

// updater
ipcMain.handle("updater:checkForUpdate", () => {
autoUpdater.checkForUpdates();
ipcMain.handle("updater:checkForUpdate", async () => {
return await autoUpdater.checkForUpdates();
});

// log
Expand Down

0 comments on commit d87b2a7

Please sign in to comment.