Skip to content

Commit 3439ea4

Browse files
garethsbras0219-msft
authored andcommitted
Fix to work with commit 1e4717e (#681)
1 parent e0d42b5 commit 3439ea4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Release/src/http/listener/http_server_asio.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@ will_deref_and_erase_t asio_server_connection::handle_http_line(const boost::sys
659659
std::string http_version = http_path_and_version.substr(http_path_and_version.size() - VersionPortionSize + 1, VersionPortionSize - 2);
660660

661661
auto m_request_impl = m_request._get_impl().get();
662-
web::http::http_version parsed_version = web::http::http_version::from_string(utility::conversions::to_string_t(http_version));
662+
web::http::http_version parsed_version = web::http::http_version::from_string(http_version);
663663
m_request_impl->_set_http_version(parsed_version);
664664

665665
// if HTTP version is 1.0 then disable pipelining

0 commit comments

Comments
 (0)