diff options
Diffstat (limited to '')
| -rw-r--r-- | CMakeLists.txt | 2 | ||||
| m--------- | externals/cpp-httplib | 0 | ||||
| -rw-r--r-- | src/web_service/web_backend.cpp | 2 | ||||
| -rw-r--r-- | src/yuzu/discord_impl.cpp | 2 |
4 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8896fe0be..10a3de9e2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
| @@ -241,7 +241,7 @@ endif() | |||
| 241 | 241 | ||
| 242 | if (ENABLE_WEB_SERVICE) | 242 | if (ENABLE_WEB_SERVICE) |
| 243 | find_package(cpp-jwt 1.4 CONFIG) | 243 | find_package(cpp-jwt 1.4 CONFIG) |
| 244 | find_package(httplib 0.11 MODULE) | 244 | find_package(httplib 0.12 MODULE) |
| 245 | endif() | 245 | endif() |
| 246 | 246 | ||
| 247 | if (YUZU_TESTS) | 247 | if (YUZU_TESTS) |
diff --git a/externals/cpp-httplib b/externals/cpp-httplib | |||
| Subproject 305a7abcb9b4e9e349843c6d563212e6c1bbbf2 | Subproject 6d963fbe8d415399d65e94db7910bbd22fe3741 | ||
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()) { |
diff --git a/src/yuzu/discord_impl.cpp b/src/yuzu/discord_impl.cpp index de0c307d4..978ffef33 100644 --- a/src/yuzu/discord_impl.cpp +++ b/src/yuzu/discord_impl.cpp | |||
| @@ -76,7 +76,7 @@ void DiscordImpl::Update() { | |||
| 76 | // New Check for game cover | 76 | // New Check for game cover |
| 77 | httplib::Client cli(game_cover_url); | 77 | httplib::Client cli(game_cover_url); |
| 78 | 78 | ||
| 79 | if (auto res = cli.Head(fmt::format("/images/game/boxart/{}.png", icon_name).c_str())) { | 79 | if (auto res = cli.Head(fmt::format("/images/game/boxart/{}.png", icon_name))) { |
| 80 | if (res->status == 200) { | 80 | if (res->status == 200) { |
| 81 | game_cover_url += fmt::format("/images/game/boxart/{}.png", icon_name); | 81 | game_cover_url += fmt::format("/images/game/boxart/{}.png", icon_name); |
| 82 | } else { | 82 | } else { |