Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit b46b5c6

Browse files
committed
Merge pull request #1645 from OpenBazaar/https-nuts-server
Migrate from http to https auto-updates
2 parents 4a638f9 + 5df645a commit b46b5c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -638,8 +638,8 @@ app.on('ready', function() {
638638
autoUpdater.quitAndInstall();
639639
});
640640

641-
var feedURL = 'http://updates.openbazaar.org:5000/update/' + platform + '/' + version;
642-
autoUpdater.setFeedURL(feedURL);
641+
var feedURL = 'https://updates.openbazaar.org:5001/update/' + platform + '/' + version;
642+
autoUpdater.setFeedURL(feedURL)
643643
mainWindow.webContents.executeJavaScript("console.log('Checking for new versions at " + feedURL + " ...')");
644644

645645
// Check for updates every hour

0 commit comments

Comments
 (0)