From eedb61a22f470721e62a2927b30f1d89dee68e8b Mon Sep 17 00:00:00 2001 From: SamNet-dev Date: Sat, 31 Jan 2026 12:37:02 -0600 Subject: [PATCH] Show bot token input when typing in Telegram setup wizard Remove silent flag (-s) from read so users can see what they type. --- conduit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conduit.sh b/conduit.sh index 275f50c..6be4b58 100644 --- a/conduit.sh +++ b/conduit.sh @@ -5441,7 +5441,7 @@ telegram_setup_wizard() { echo -e " outbound connections to api.telegram.org from this server." echo -e " This traffic may be visible to your network provider." echo "" - read -s -p " Enter your bot token: " TELEGRAM_BOT_TOKEN < /dev/tty || { trap - SIGINT; TELEGRAM_BOT_TOKEN="$_saved_token"; return; } + read -p " Enter your bot token: " TELEGRAM_BOT_TOKEN < /dev/tty || { trap - SIGINT; TELEGRAM_BOT_TOKEN="$_saved_token"; return; } echo "" # Trim whitespace TELEGRAM_BOT_TOKEN="${TELEGRAM_BOT_TOKEN## }"