From 875379d3ed9625b2026e4968b378da89d0faf3ee Mon Sep 17 00:00:00 2001 From: Alexander Zinchuk Date: Thu, 6 Nov 2025 11:37:03 +0100 Subject: [PATCH] /get: Fix Newer Mac link --- public/get/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/get/index.js b/public/get/index.js index 0a99da8cc..ce90841d2 100644 --- a/public/get/index.js +++ b/public/get/index.js @@ -23,7 +23,7 @@ const packagesPromise = fetch(LATEST_RELEASE_API_URL) } else if (name.endsWith('.AppImage')) { acc['linux'] = browser_download_url; } else if (name.endsWith('.dmg')) { - acc[`mac-${name.includes('arm') ? 'arm' : 'x64'}`] = browser_download_url; + acc[`mac-${name.includes('arm') || name.includes('aarch') ? 'arm' : 'x64'}`] = browser_download_url; } return acc;