njalla: Fix configuration change during update
If the user enabled `quietreply`, it should not become false after the first update. Users might not notice a problem because I think ddclient re-reads the config file before every check.
This commit is contained in:
parent
32bf975bfa
commit
61577d29ae
1 changed files with 1 additions and 1 deletions
|
@ -5247,7 +5247,7 @@ sub nic_njalla_update {
|
|||
# Read input params
|
||||
my $ipv4 = delete $config{$h}{'wantipv4'};
|
||||
my $ipv6 = delete $config{$h}{'wantipv6'};
|
||||
my $quietreply = delete $config{$h}{'quietreply'};
|
||||
my $quietreply = $config{$h}{'quietreply'};
|
||||
my $ip_output = '';
|
||||
|
||||
# Build url
|
||||
|
|
Loading…
Reference in a new issue