From c395275d5319ab6b5916381d09aeed39ca45ecf7 Mon Sep 17 00:00:00 2001 From: Stefan Schantl Date: Mon, 12 Jul 2021 12:38:45 +0200 Subject: [PATCH] dyns.net: Send request via HTTPS Signed-off-by: Stefan Schantl --- src/ddns/providers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ddns/providers.py b/src/ddns/providers.py index 82eb604..83e933b 100644 --- a/src/ddns/providers.py +++ b/src/ddns/providers.py @@ -1060,7 +1060,7 @@ class DDNSProviderDynsNet(DDNSProvider): # the possible response codes. (Currently we are using the v1.1 proto) # http://www.dyns.net/documentation/technical/protocol/ - url = "http://www.dyns.net/postscript011.php" + url = "https://www.dyns.net/postscript011.php" def update_protocol(self, proto): data = { -- 2.39.5