khatru: support path in getBaseURL().

This commit is contained in:
fiatjaf
2026-01-02 07:25:46 -03:00
parent f47b77272b
commit 416e11b868

View File

@@ -181,5 +181,6 @@ func (rl *Relay) getBaseURL(r *http.Request) string {
proto = "https" proto = "https"
} }
} }
return proto + "://" + host
return proto + "://" + host + r.URL.Path
} }