Skip to content

Commit

Permalink
fix(macos): update urls when using emulated app
Browse files Browse the repository at this point in the history
ref: #1797
  • Loading branch information
daiyam committed Nov 22, 2024
1 parent 8bcb412 commit 9d4c2e8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions patches/osx/fix-emulated-urls.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
diff --git a/src/vs/workbench/electron-sandbox/window.ts b/src/vs/workbench/electron-sandbox/window.ts
index 90c9654..3ef5d32 100644
--- a/src/vs/workbench/electron-sandbox/window.ts
+++ b/src/vs/workbench/electron-sandbox/window.ts
@@ -257,4 +257,4 @@ export class NativeWindow extends BaseWindow {
const quality = this.productService.quality;
- const stableURL = 'https://code.visualstudio.com/docs/?dv=osx';
- const insidersURL = 'https://code.visualstudio.com/docs/?dv=osx&build=insiders';
+ const stableURL = 'https://github.com/VSCodium/vscodium/releases/latest';
+ const insidersURL = 'https://github.com/VSCodium/vscodium-insiders/releases/latest';
this.openerService.open(quality === 'stable' ? stableURL : insidersURL);

0 comments on commit 9d4c2e8

Please sign in to comment.