Skip to content

Commit 875379d

Browse files
committed
/get: Fix Newer Mac link
1 parent 4f7b3d3 commit 875379d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/get/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const packagesPromise = fetch(LATEST_RELEASE_API_URL)
2323
} else if (name.endsWith('.AppImage')) {
2424
acc['linux'] = browser_download_url;
2525
} else if (name.endsWith('.dmg')) {
26-
acc[`mac-${name.includes('arm') ? 'arm' : 'x64'}`] = browser_download_url;
26+
acc[`mac-${name.includes('arm') || name.includes('aarch') ? 'arm' : 'x64'}`] = browser_download_url;
2727
}
2828

2929
return acc;

0 commit comments

Comments
 (0)