Disable retry for private pack fetch
This is already handled with a dialog asking whether you want it to be removed. Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
parent
44b4262f3c
commit
d5990cca43
@ -74,6 +74,7 @@ void PackFetchTask::fetchPrivate(const QStringList& toFetch)
|
||||
auto data = std::make_shared<QByteArray>();
|
||||
NetJob* job = new NetJob("Fetching private pack", m_network);
|
||||
job->addNetAction(Net::ApiDownload::makeByteArray(privatePackBaseUrl.arg(packCode), data));
|
||||
job->setAskRetry(false);
|
||||
|
||||
QObject::connect(job, &NetJob::succeeded, this, [this, job, data, packCode] {
|
||||
ModpackList packs;
|
||||
|
Loading…
Reference in New Issue
Block a user