We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99b2a06 commit 7e18138Copy full SHA for 7e18138
src/updater.ts
@@ -62,10 +62,7 @@ export function start(updateBaseUrl: string): void {
62
// rely on NSURLConnection setting the User-Agent to what we expect,
63
// and also acts as a convenient cache-buster to ensure that when the
64
// app updates it always gets a fresh value to avoid update-looping.
65
- url = {
66
- "url": `${updateBaseUrl}macos.json`,
67
- "serverType": "json",
68
- };
+ url = `${updateBaseUrl}macos.json`;
69
} else if (process.platform === 'win32') {
70
url = `${updateBaseUrl}win32/${process.arch}/`;
71
} else {
0 commit comments