From f088216376b529ce0b815c204c439f9ebc2dc5a1 Mon Sep 17 00:00:00 2001 From: Mauro Balades Date: Sat, 3 Aug 2024 22:11:46 +0200 Subject: [PATCH] feat: Update flatpak installation link on download page --- src/components/download.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/download.tsx b/src/components/download.tsx index 7229e5a..cd23404 100644 --- a/src/components/download.tsx +++ b/src/components/download.tsx @@ -131,7 +131,7 @@ export default function DownloadPage() { const startDownload = () => { let releaseTarget: string; if (selectedLinuxDownloadType === "flatpak") { - window.open("https://flathub.org/apps/io.github.zen_browser.zen", "_blank"); + window.open("https://dl.flathub.org/repo/appstream/io.github.zen_browser.zen.flatpakref"); releaseTarget = "flatpak"; } else { const platform = releaseTree[selectedPlatform.toLowerCase()];