Lowercase URL to match 'HTTPS://<server>/'

This commit is contained in:
Sullo
2025-05-05 14:42:13 -04:00
parent 252cee6207
commit 6678d2dedc

View File

@ -21689,6 +21689,7 @@ parse_hn_port() {
local node_tmp="" local node_tmp=""
NODE="$1" NODE="$1"
NODE="${NODE,,}" # Lowercase
NODE="${NODE/https\:\/\//}" # strip "https" NODE="${NODE/https\:\/\//}" # strip "https"
NODE="${NODE%%/*}" # strip trailing urlpath NODE="${NODE%%/*}" # strip trailing urlpath