dnsapi: Beget.com fix rm record

pull/6202/head
ARNik 2025-01-16 19:25:56 +03:00
parent 2fef0ebea8
commit aa6feb4b62
1 changed files with 3 additions and 1 deletions

View File

@ -237,7 +237,9 @@ _add_record() {
_rm_record() {
data=$1
record_data=$2
echo "$data" | sed "s/$record_data,//" | sed "s/,$record_data//" | sed "s/$record_data//"
echo "$data" | sed "s/$record_data//g" | sed "s/,\+/,/g" |
sed "s/{,/{/g" | sed "s/,}/}/g" |
sed "s/\[,/\[/g" | sed "s/,\]/\]/g"
}
_txt_to_dns_json() {