Skip to content

Commit

Permalink
Fix header name (#537)
Browse files Browse the repository at this point in the history
  • Loading branch information
trueleo authored Oct 25, 2023
1 parent 72e7509 commit ea94d94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/handlers/livetail.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ fn extract_basic_auth(header: &MetadataMap) -> Option<Credentials> {

fn extract_cookie(header: &MetadataMap) -> Option<Cookie> {
let cookies = header
.get("Cookies")
.get("Cookie")
.and_then(|value| value.to_str().ok())
.map(Cookie::split_parse)?;

Expand Down

0 comments on commit ea94d94

Please sign in to comment.