Skip to content

Commit 1d8690f

Browse files
committed
fix(noip): force useProviderIP to false for IPv6
1 parent 2922d44 commit 1d8690f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

internal/provider/providers/noip/provider.go

+7
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,13 @@ func New(data json.RawMessage, domain, host string,
4141
if err != nil {
4242
return nil, err
4343
}
44+
45+
if ipVersion == ipversion.IP6 {
46+
// Thanks to @NightFurySL2001
47+
// See https://github.com/qdm12/ddns-updater/discussions/750
48+
extraSettings.UseProviderIP = false
49+
}
50+
4451
p = &Provider{
4552
domain: domain,
4653
host: host,

0 commit comments

Comments
 (0)