Skip to content

Commit c584f9b

Browse files
committed
Fix: dd24 API call and fix #236
1 parent 51dd14c commit c584f9b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

internal/settings/providers/dd24/provider.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ func (p *provider) Update(ctx context.Context, client *http.Client, ip net.IP) (
100100
values.Set("hostname", p.BuildDomainName())
101101
values.Set("password", p.password)
102102
if p.useProviderIP {
103-
values.Set("hostname", "auto")
103+
values.Set("ip", "auto")
104104
} else {
105-
values.Set("hostname", ip.String())
105+
values.Set("ip", ip.String())
106106
}
107107
u.RawQuery = values.Encode()
108108

0 commit comments

Comments
 (0)