From bdb32cdfe933829c01b66027cf2e0840d9217fe5 Mon Sep 17 00:00:00 2001 From: jedarden Date: Sat, 9 May 2026 15:36:41 -0400 Subject: [PATCH] =?UTF-8?q?Fix=20typo=20in=20primary=20key=20header=20name?= =?UTF-8?q?=20(X-Meiroil=20=E2=86=92=20X-Miroir)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 --- crates/miroir-proxy/src/routes/documents.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/miroir-proxy/src/routes/documents.rs b/crates/miroir-proxy/src/routes/documents.rs index ad3c5ae..96d4275 100644 --- a/crates/miroir-proxy/src/routes/documents.rs +++ b/crates/miroir-proxy/src/routes/documents.rs @@ -74,7 +74,7 @@ async fn get_primary_key( } // Check for primary key in query string/header - if let Some(pk) = headers.get("X-Meiroil-Primary-Key") { + if let Some(pk) = headers.get("X-Miroir-Primary-Key") { if let Ok(pk_str) = pk.to_str() { return Ok(pk_str.to_string()); }