From 51d2418ac46316e09269e8602762bf500e3bfefe Mon Sep 17 00:00:00 2001 From: Marco Gallegos Date: Mon, 15 Dec 2025 14:40:16 -0600 Subject: [PATCH] fix: Update Telegram redirection to official download page --- server.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/server.js b/server.js index 9ba557d..ba296ca 100644 --- a/server.js +++ b/server.js @@ -43,11 +43,8 @@ app.get("/telegram", (req, res) => { ); } - // Fallback: por ejemplo, dirigir al App Store - return res.redirect( - 302, - "https://apps.apple.com/es/app/telegram-messenger/id686449807" - ); + // Fallback: página oficial de descargas de Telegram + return res.redirect(302, "https://telegram.org/apps"); }); // Standard health check endpoint for monitoring with VPS ping