Skip to content

Commit c4755e1

Browse files
committed
fix: feedurl
1 parent 9c33b11 commit c4755e1

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

electron/components/PearlOTA.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,7 @@ class PearlOTA {
2828
this.updater.autoInstallOnAppQuit = false;
2929
this.updater.logger = logger;
3030

31-
this.updater.setFeedURL({
32-
provider: 'github',
33-
owner: 'valory-xyz',
34-
repo: 'olas-operate-app',
35-
channel: isDev ? 'dev' : 'latest',
36-
});
31+
this.updater.setFeedURL(githubUpdateOptions);
3732

3833
this.#bindUpdaterEvents();
3934
}

electron/constants/config.js

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ const githubUpdateOptions = {
3535
channel: isDev ? 'dev' : 'latest', // The release channel to check for updates, e.g. 'latest', 'beta', 'alpha'
3636
vPrefixedTagName: true,
3737
protocol: 'https',
38-
// token: process.env.GH_TEST_PAT, // Personal Access Token (PAT) for GitHub when testing
3938
};
4039

4140
/**

0 commit comments

Comments
 (0)