BUG/MINOR: mux-h1: report the correct frontend in error captures

The error captures provided in HTX by the H1 mux would always report the
backend as the "other end". We need to assign the backend only on requests.

No backport is needed.
diff --git a/src/mux_h1.c b/src/mux_h1.c
index 4e884ed..af2ce77 100644
--- a/src/mux_h1.c
+++ b/src/mux_h1.c
@@ -827,7 +827,7 @@
 	struct proxy *other_end = sess->fe;
 	union error_snapshot_ctx ctx;
 
-	if (h1s->cs->data)
+	if (h1s->cs->data && !(h1m->flags & H1_MF_RESP))
 		other_end = si_strm(h1s->cs->data)->be;
 
 	/* http-specific part now */