Merge pull request #494 from mjbrowns/master

This commit is contained in:
Sandro 2023-01-13 18:51:27 +01:00 committed by GitHub
commit 5fcf4b37f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6452,7 +6452,11 @@ sub nic_duckdns_update {
$url .= $h;
$url .= "&token=";
$url .= $config{$h}{'password'};
$url .= "&ip=";
if (is_ipv6($ip)) {
$url .= "&ipv6=";
} else {
$url .= "&ip=";
}
$url .= $ip;