fix(njalla): add trailing slash to URL path (#978)

This commit is contained in:
Mynacol
2026-01-13 18:40:50 +01:00
committed by GitHub
parent 2455055d20
commit 01d3cd1383

View File

@@ -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))