mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-07-13 09:02:09 -04:00
Two follow-up Copilot review nits on the colon-syntax middleware: - Don't blank r.URL.RawPath after the rewrite. Graph.ServeHTTP sets RawPath = EscapedPath() as a workaround for chi's parameter-binding quirks with `$`/`!` in IDs (see go-chi/chi#641). Clearing RawPath for rewritten requests negates that workaround. Re-establish the same invariant after the rewrite. - Tests previously used log.NewLogger(), which mutates global zerolog state. Switch to log.NopLogger() — order-independent, no global side effects.