Browse Source

externals: Update cpp-httplib to latest

nce_cpp
Alexandre Bouvier 3 years ago
parent
commit
a6a501bfe8
  1. 2
      CMakeLists.txt
  2. 2
      externals/cpp-httplib
  3. 2
      src/web_service/web_backend.cpp
  4. 2
      src/yuzu/discord_impl.cpp

2
CMakeLists.txt

@ -241,7 +241,7 @@ endif()
if (ENABLE_WEB_SERVICE) if (ENABLE_WEB_SERVICE)
find_package(cpp-jwt 1.4 CONFIG) find_package(cpp-jwt 1.4 CONFIG)
find_package(httplib 0.11 MODULE)
find_package(httplib 0.12 MODULE)
endif() endif()
if (YUZU_TESTS) if (YUZU_TESTS)

2
externals/cpp-httplib

@ -1 +1 @@
Subproject commit 305a7abcb9b4e9e349843c6d563212e6c1bbbf21
Subproject commit 6d963fbe8d415399d65e94db7910bbd22fe3741c

2
src/web_service/web_backend.cpp

@ -71,7 +71,7 @@ struct Client::Impl {
const std::string& jwt_ = "", const std::string& username_ = "", const std::string& jwt_ = "", const std::string& username_ = "",
const std::string& token_ = "") { const std::string& token_ = "") {
if (cli == nullptr) { if (cli == nullptr) {
cli = std::make_unique<httplib::Client>(host.c_str());
cli = std::make_unique<httplib::Client>(host);
} }
if (!cli->is_valid()) { if (!cli->is_valid()) {

2
src/yuzu/discord_impl.cpp

@ -76,7 +76,7 @@ void DiscordImpl::Update() {
// New Check for game cover // New Check for game cover
httplib::Client cli(game_cover_url); httplib::Client cli(game_cover_url);
if (auto res = cli.Head(fmt::format("/images/game/boxart/{}.png", icon_name).c_str())) {
if (auto res = cli.Head(fmt::format("/images/game/boxart/{}.png", icon_name))) {
if (res->status == 200) { if (res->status == 200) {
game_cover_url += fmt::format("/images/game/boxart/{}.png", icon_name); game_cover_url += fmt::format("/images/game/boxart/{}.png", icon_name);
} else { } else {

Loading…
Cancel
Save