From bf0760fde4909d7e96cff61cf9e90311afed251a Mon Sep 17 00:00:00 2001 From: Andrea Pappacoda Date: Fri, 18 Mar 2022 23:12:51 +0100 Subject: [PATCH] fix: update user agent (#1218) --- httplib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httplib.h b/httplib.h index 52647cb..41db5bf 100644 --- a/httplib.h +++ b/httplib.h @@ -6171,7 +6171,7 @@ inline bool ClientImpl::write_request(Stream &strm, Request &req, #ifndef CPPHTTPLIB_NO_DEFAULT_USER_AGENT if (!req.has_header("User-Agent")) { - req.headers.emplace("User-Agent", "cpp-httplib/0.10.3"); + req.headers.emplace("User-Agent", "cpp-httplib/0.10.4"); } #endif