lib/curl/Adapter: add missing StripLeft() call

Fixes regression by commit 88a66df9d6
This commit is contained in:
Max Kellermann 2022-07-02 18:36:02 +02:00
parent 627fd755e8
commit 853afa1bce
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ CurlResponseHandlerAdapter::HeaderFunction(std::string_view s) noexcept
std::transform(name.begin(), name.end(), name.begin(),
static_cast<char(*)(char)>(ToLowerASCII));
headers.emplace(std::move(name), value);
headers.emplace(std::move(name), StripLeft(value));
}
std::size_t