yuzu: Set a lower timeout for discord presence

master
Narr the Reg 2023-02-21 18:23:16 +07:00
parent 89221ca7d5
commit d482ec32a4
1 changed files with 2 additions and 0 deletions

@ -75,6 +75,8 @@ void DiscordImpl::Update() {
// New Check for game cover
httplib::Client cli(game_cover_url);
cli.set_connection_timeout(std::chrono::seconds(3));
cli.set_read_timeout(std::chrono::seconds(3));
if (auto res = cli.Head(fmt::format("/images/game/boxart/{}.png", icon_name).c_str())) {
if (res->status == 200) {