From b7d0451d562300cba781b164033d77cf4444749a Mon Sep 17 00:00:00 2001 From: 2shiori17 <98276492+2shiori17@users.noreply.github.com> Date: Sun, 26 Mar 2023 20:07:12 +0900 Subject: [PATCH] Fix concept-header-list-get-decode-split --- components/net/fetch/headers.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/net/fetch/headers.rs b/components/net/fetch/headers.rs index e88fe641866..54fbe636f6f 100644 --- a/components/net/fetch/headers.rs +++ b/components/net/fetch/headers.rs @@ -26,16 +26,16 @@ fn get_header_value_as_list(name: &str, headers: &HeaderMap) -> Option(); // Step 2 - let mut position = s.chars().peekable(); + let mut position = input.chars().peekable(); // Step 3 let mut values: Vec = vec![];