From 5ab279c61a6ac9494e8fccfbd5a8d27fb41adf3b Mon Sep 17 00:00:00 2001 From: Mynacol Date: Sun, 13 Apr 2025 19:40:00 +0000 Subject: [PATCH] Provider njalla: Update update URI To prevent a HTTP 301 redirect each request. This URI matches the one on the official documentation at . --- internal/provider/providers/njalla/provider.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/provider/providers/njalla/provider.go b/internal/provider/providers/njalla/provider.go index d802efdba..941654813 100644 --- a/internal/provider/providers/njalla/provider.go +++ b/internal/provider/providers/njalla/provider.go @@ -103,7 +103,7 @@ func (p *Provider) Update(ctx context.Context, client *http.Client, ip netip.Add u := url.URL{ Scheme: "https", Host: "njal.la", - Path: "/update", + Path: "/update/", } values := url.Values{} values.Set("h", utils.BuildURLQueryHostname(p.owner, p.domain))