mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Invert the bad boolean value for nexus download throttle
This commit is contained in:
parent
a57794479f
commit
ff6743b468
@ -31,9 +31,9 @@ namespace Wabbajack.Server.Services
|
||||
|
||||
while (true)
|
||||
{
|
||||
bool useNexus = _nexusClient.HourlyRemaining > 25;
|
||||
bool ignoreNexus = _nexusClient.HourlyRemaining < 25;
|
||||
|
||||
var nextDownload = await _sql.GetNextPendingDownload(useNexus);
|
||||
var nextDownload = await _sql.GetNextPendingDownload(ignoreNexus);
|
||||
|
||||
if (nextDownload == null)
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user