Skip to content

Commit 8f1840b

Browse files
authored
Merge pull request #208 from BenjaminAmos/windows-download-fix
fix: fix Windows launcher download link
2 parents 3ca4fda + 699a41e commit 8f1840b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Download/Download.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function Download() {
3939
let downloadUrl;
4040

4141
if (platform === "Win32") {
42-
downloadUrl = data.assets && data.assets[3].browser_download_url;
42+
downloadUrl = data.assets && data.assets[2].browser_download_url;
4343
srcLoc.href = downloadUrl;
4444
} else if (platform === "Linux x86_64") {
4545
downloadUrl = data.assets && data.assets[0].browser_download_url;

0 commit comments

Comments
 (0)