diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP.cpp b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP.cpp index 08f53f71c0..1f7338bd0a 100644 --- a/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP.cpp +++ b/Userland/Libraries/LibWeb/Fetch/Infrastructure/HTTP.cpp @@ -69,7 +69,7 @@ DeprecatedString collect_an_http_quoted_string(GenericLexer& lexer, HttpQuotedSt // 6. If the extract-value flag is set, then return value. if (extract_value == HttpQuotedStringExtractValue::Yes) - return value.to_string(); + return value.to_deprecated_string(); // 7. Return the code points from positionStart to position, inclusive, within input. auto position = lexer.tell(); |