]> git.ipfire.org Git - people/stevee/ddns.git/commitdiff
FreeDNSAfraid.org: Fix typo in checking if the IP has been changed.
authorStefan Schantl <stefan.schantl@ipfire.org>
Sat, 23 Oct 2021 19:11:27 +0000 (21:11 +0200)
committerStefan Schantl <stefan.schantl@ipfire.org>
Sat, 23 Oct 2021 19:11:27 +0000 (21:11 +0200)
Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
src/ddns/providers.py

index 4f27af97b336f7a0fa911f0952e4e136d5cf1d8f..5b2a82d1b727172c2011574277988977b8013db0 100644 (file)
@@ -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.