GH-3304 Temporarily ignore download failures for FTB packs

This is a temporary measure, to match FTB's own installer, to allow
packs to download while FTB work on fixing the data from their API.
This commit is contained in:
Jamie Mansfield 2020-10-11 22:43:39 +01:00
parent f1284ab96b
commit 05ffcf706b
No known key found for this signature in database
GPG Key ID: 36F61598F39F67B0

View File

@ -123,16 +123,20 @@ void PackInstallTask::install()
auto dl = Net::Download::makeFile(file.url, path);
jobPtr->addNetAction(dl);
}
connect(jobPtr.get(), &NetJob::succeeded, this, [&]()
{
jobPtr.reset();
emitSucceeded();
});
connect(jobPtr.get(), &NetJob::failed, [&](QString reason)
{
jobPtr.reset();
emitFailed(reason);
// FIXME: Temporarily ignore file download failures (matching FTB's installer),
// while FTB's data is fucked.
qWarning() << "Failed to download files for modpack: " + reason;
emitSucceeded();
});
connect(jobPtr.get(), &NetJob::progress, [&](qint64 current, qint64 total)
{