Skip to content

Commit

Permalink
Do not prevent Windows auto-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sebn committed May 9, 2017
1 parent 38655b0 commit 953cca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/app/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const checkForNewRelease = () => {
const arch = os.arch()
const platform = os.platform()
const version = app.getVersion()
if (platform !== 'darwin') {
if (platform !== 'darwin' && platform !== 'win32') {
return
}
autoUpdater.addListener('update-downloaded', (event, releaseNotes, releaseName) => {
Expand Down

0 comments on commit 953cca9

Please sign in to comment.