fix(router): rename the browser name header to x-browser-name (#5162)

This commit is contained in:
Shankar Singh C
2024-07-01 20:29:54 +05:30
committed by GitHub
parent ecb8cafaed
commit ff14e79adf

View File

@ -77,7 +77,7 @@ pub mod headers {
pub const X_CLIENT_SOURCE: &str = "X-Client-Source"; pub const X_CLIENT_SOURCE: &str = "X-Client-Source";
pub const X_PAYMENT_CONFIRM_SOURCE: &str = "X-Payment-Confirm-Source"; pub const X_PAYMENT_CONFIRM_SOURCE: &str = "X-Payment-Confirm-Source";
pub const CONTENT_LENGTH: &str = "Content-Length"; 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"; pub const X_CLIENT_PLATFORM: &str = "x-client-platform";
} }