Fix input recognition in remote selection and add debug information

This commit is contained in:
2025-03-05 09:36:48 +00:00
parent 455006992d
commit 95a086dff7
2 changed files with 13 additions and 1 deletions
+2 -1
View File
@@ -1174,7 +1174,8 @@ echo -e "Configure connection to your Transmission client:"
echo
read -p "Is Transmission running on a remote server? (y/n) [n]: " input_remote
if [[ $input_remote =~ ^[Yy]$ ]]; then
# Explicitly check for "y" or "Y" response
if [[ "$input_remote" == "y" ]] || [[ "$input_remote" == "Y" ]]; then
export TRANSMISSION_REMOTE=true
echo -e "${GREEN}Remote Transmission selected.${NC}"
else