lib/curl/Adapter: add missing StripLeft() call
Fixes regression by commit 88a66df9d6
This commit is contained in:
parent
627fd755e8
commit
853afa1bce
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue