From 0ce882515c6e369baf707049d89c8d0185548c88 Mon Sep 17 00:00:00 2001 From: R4SAS Date: Mon, 20 Jun 2022 00:04:32 +0300 Subject: [PATCH] fix download button for android Signed-off-by: R4SAS --- js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/app.js b/js/app.js index 8bc43eb..c49711b 100644 --- a/js/app.js +++ b/js/app.js @@ -7,7 +7,7 @@ function renderDownloadButton() { } else if (window.navigator.userAgent.toUpperCase().indexOf("ANDROID") !== -1) { dl_btn.innerText = document.webL10n.get("header.dl-btn-android", null, "Download for Android"); - dl_btn.setAttribute("href", droid_asset[0].browser_download_url); + dl_btn.setAttribute("href", "https://github.com/PurpleI2P/i2pd-android/releases/latest"); } else { dl_btn.innerText = document.webL10n.get("header-dl-btn", null, "Downloads");