Use the forge mirrors for downloading forge libraries
Let's hope we never, ever see a forge download error again.
This commit is contained in:
@ -40,6 +40,16 @@ public:
|
||||
downloads.append(action);
|
||||
parts_progress.append(part_info());
|
||||
total_progress++;
|
||||
// if this is already running, the action needs to be started right away!
|
||||
if (isRunning())
|
||||
{
|
||||
emit progress(current_progress, total_progress);
|
||||
connect(base.get(), SIGNAL(succeeded(int)), SLOT(partSucceeded(int)));
|
||||
connect(base.get(), SIGNAL(failed(int)), SLOT(partFailed(int)));
|
||||
connect(base.get(), SIGNAL(progress(int, qint64, qint64)),
|
||||
SLOT(partProgress(int, qint64, qint64)));
|
||||
base->start();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user