From: Stefan Schantl Date: Sat, 23 Oct 2021 19:11:27 +0000 (+0200) Subject: FreeDNSAfraid.org: Fix typo in checking if the IP has been changed. X-Git-Tag: 015~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3a162595b9b44a4cbf08a3db14a4d2ebfeeb5583;p=ddns.git FreeDNSAfraid.org: Fix typo in checking if the IP has been changed. Signed-off-by: Stefan Schantl --- diff --git a/src/ddns/providers.py b/src/ddns/providers.py index 4f27af9..5b2a82d 100644 --- a/src/ddns/providers.py +++ b/src/ddns/providers.py @@ -1204,7 +1204,7 @@ class DDNSProviderFreeDNSAfraidOrg(DDNSProvider): output = response.read().decode() # Handle success messages. - if output.startswith("Updated") or output.startswith("No IP changed detected"): + if output.startswith("Updated") or output.startswith("No IP change detected"): return # Handle error codes.