From e5427ce1ff637bf79ee79a3c76d2820e7dc058d8 Mon Sep 17 00:00:00 2001 From: bernhardfrenking <58109356+bernhardfrenking@users.noreply.github.com> Date: Thu, 1 Feb 2024 13:01:24 +0100 Subject: [PATCH] dns/ddclient: fix dyndns domeneshop hostname parameter name (#3784) --- .../src/opnsense/scripts/ddclient/lib/account/domeneshop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dns/ddclient/src/opnsense/scripts/ddclient/lib/account/domeneshop.py b/dns/ddclient/src/opnsense/scripts/ddclient/lib/account/domeneshop.py index 3d51381c2..621ec1ce7 100755 --- a/dns/ddclient/src/opnsense/scripts/ddclient/lib/account/domeneshop.py +++ b/dns/ddclient/src/opnsense/scripts/ddclient/lib/account/domeneshop.py @@ -56,7 +56,7 @@ class Domeneshop(BaseAccount): hostnames = self.settings.get('hostnames') # DNS update request using the "IP update protocol" - url = f'https://api.domeneshop.no/v0/dyndns/update?hostnames={hostnames}&myip={str(self.current_address)}' + url = f'https://api.domeneshop.no/v0/dyndns/update?hostname={hostnames}&myip={str(self.current_address)}' req_opts = { 'url': url, 'auth': HTTPBasicAuth(self.settings.get('username'), self.settings.get('password')),