Skip to content

Commit

Permalink
fix: feedurl
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Oct 1, 2024
1 parent 9c33b11 commit c4755e1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
7 changes: 1 addition & 6 deletions electron/components/PearlOTA.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,7 @@ class PearlOTA {
this.updater.autoInstallOnAppQuit = false;
this.updater.logger = logger;

this.updater.setFeedURL({
provider: 'github',
owner: 'valory-xyz',
repo: 'olas-operate-app',
channel: isDev ? 'dev' : 'latest',
});
this.updater.setFeedURL(githubUpdateOptions);

this.#bindUpdaterEvents();
}
Expand Down
1 change: 0 additions & 1 deletion electron/constants/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ const githubUpdateOptions = {
channel: isDev ? 'dev' : 'latest', // The release channel to check for updates, e.g. 'latest', 'beta', 'alpha'
vPrefixedTagName: true,
protocol: 'https',
// token: process.env.GH_TEST_PAT, // Personal Access Token (PAT) for GitHub when testing
};

/**
Expand Down

0 comments on commit c4755e1

Please sign in to comment.