mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
Merge pull request #6506 from spycrab/updater_timeout
Updater: Increase request timeout to 30s
This commit is contained in:
commit
cd4881d74b
@ -7,6 +7,7 @@
|
||||
#include <OptionParser.h>
|
||||
#include <algorithm>
|
||||
#include <array>
|
||||
#include <chrono>
|
||||
#include <cstdio>
|
||||
#include <ed25519/ed25519.h>
|
||||
#include <mbedtls/base64.h>
|
||||
@ -471,7 +472,7 @@ Manifest::Hash ComputeHash(const std::string& contents)
|
||||
bool DownloadContent(const std::vector<Manifest::Hash>& to_download,
|
||||
const std::string& content_base_url, const std::string& temp_path)
|
||||
{
|
||||
Common::HttpRequest req;
|
||||
Common::HttpRequest req(std::chrono::seconds(30));
|
||||
for (const auto& h : to_download)
|
||||
{
|
||||
std::string hash_filename = HexEncode(h.data(), h.size());
|
||||
|
Loading…
x
Reference in New Issue
Block a user