Skip to content

Commit 4d70228

Browse files
committed
Merge pull request #264 from 10gen/INT-965-disable-auto-updater
INT-965 disable auto-updater for release-1
2 parents c97073d + ba403d1 commit 4d70228

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/electron/auto-updater.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ app.on('check for updates', function() {
3131
updater.checkForUpdates();
3232
});
3333

34-
app.on('ready', function() {
35-
updater.setFeedUrl(FEED_URL);
36-
app.emit('check for updates');
37-
});
34+
// @todo (kangas) reenable update check after release-1
35+
// app.on('ready', function() {
36+
// updater.setFeedUrl(FEED_URL);
37+
// app.emit('check for updates');
38+
// });

0 commit comments

Comments
 (0)