From ff14e79adf48a983855cf7abcc282bf556ecf2f9 Mon Sep 17 00:00:00 2001 From: Shankar Singh C <83439957+ShankarSinghC@users.noreply.github.com> Date: Mon, 1 Jul 2024 20:29:54 +0530 Subject: [PATCH] fix(router): rename the browser name header to `x-browser-name` (#5162) --- crates/router/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/router/src/lib.rs b/crates/router/src/lib.rs index b653c31ec6..10563cc575 100644 --- a/crates/router/src/lib.rs +++ b/crates/router/src/lib.rs @@ -77,7 +77,7 @@ pub mod headers { pub const X_CLIENT_SOURCE: &str = "X-Client-Source"; pub const X_PAYMENT_CONFIRM_SOURCE: &str = "X-Payment-Confirm-Source"; pub const CONTENT_LENGTH: &str = "Content-Length"; - pub const BROWSER_NAME: &str = "browsername"; + pub const BROWSER_NAME: &str = "x-browser-name"; pub const X_CLIENT_PLATFORM: &str = "x-client-platform"; }