fix forgotten parenthensis

This commit is contained in:
zak905 2024-06-10 19:53:05 +02:00
parent cc9c85cc1a
commit 74ffbb2172
No known key found for this signature in database
GPG Key ID: 718460806D947881

View File

@ -95,7 +95,7 @@ _ionos_cloud_get_record() {
zone_id=$1
txtrecord=$2
# this is to transform the domain to lower case
fulldomain=$(printf "%s" "$3" | _lower_case
fulldomain=$(printf "%s" "$3" | _lower_case)
# this is to transform record name to lower case
# IONOS Cloud API transforms all record names to lower case
_record_name=$(printf "%s" "$fulldomain" | cut -d . -f 1 | _lower_case)