Skip to content

Commit ea94d94

Browse files
authored
Fix header name (#537)
1 parent 72e7509 commit ea94d94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/handlers/livetail.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ fn extract_basic_auth(header: &MetadataMap) -> Option<Credentials> {
232232

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

0 commit comments

Comments
 (0)