Fix input recognition in remote selection and add debug information
This commit is contained in:
+2
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user