implement missing context

This commit is contained in:
lash
2025-01-19 09:35:09 +00:00
parent 37973a6c9b
commit ddd8d7cac0
4 changed files with 14 additions and 9 deletions

View File

@@ -80,7 +80,7 @@ func (hh *HTTPRequestHandler) ServeHTTP(w http.ResponseWriter, req *http.Request
w.WriteHeader(200)
w.Header().Set("Content-Type", "text/plain")
rqs, err = hh.Output(rqs)
rqs, perr = hh.Reset(rqs)
rqs, perr = hh.Reset(rqs.Ctx, rqs)
if err != nil {
hh.WriteError(w, 500, err)
return