summaryrefslogtreecommitdiff
path: root/src/web_service/web_backend.cpp
diff options
context:
space:
mode:
authorGravatar liamwhite2023-02-21 18:57:55 -0500
committerGravatar GitHub2023-02-21 18:57:55 -0500
commitba05301e1b91086d9286bd6cef99423ef409f0e6 (patch)
treefff7e208e4fcdf0d956660e98696f89d13a6bf59 /src/web_service/web_backend.cpp
parentMerge pull request #9843 from MonsterDruide1/network-connreset (diff)
parentexternals: Update cpp-httplib to latest (diff)
downloadyuzu-ba05301e1b91086d9286bd6cef99423ef409f0e6.tar.gz
yuzu-ba05301e1b91086d9286bd6cef99423ef409f0e6.tar.xz
yuzu-ba05301e1b91086d9286bd6cef99423ef409f0e6.zip
Merge pull request #9841 from abouvier/httplib-update
externals: Update cpp-httplib to latest
Diffstat (limited to 'src/web_service/web_backend.cpp')
-rw-r--r--src/web_service/web_backend.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web_service/web_backend.cpp b/src/web_service/web_backend.cpp
index 12a7e4922..dff380cca 100644
--- a/src/web_service/web_backend.cpp
+++ b/src/web_service/web_backend.cpp
@@ -71,7 +71,7 @@ struct Client::Impl {
71 const std::string& jwt_ = "", const std::string& username_ = "", 71 const std::string& jwt_ = "", const std::string& username_ = "",
72 const std::string& token_ = "") { 72 const std::string& token_ = "") {
73 if (cli == nullptr) { 73 if (cli == nullptr) {
74 cli = std::make_unique<httplib::Client>(host.c_str()); 74 cli = std::make_unique<httplib::Client>(host);
75 } 75 }
76 76
77 if (!cli->is_valid()) { 77 if (!cli->is_valid()) {