Invert the bad boolean value for nexus download throttle

This commit is contained in:
Timothy Baldridge 2020-05-13 22:51:44 -06:00
parent a57794479f
commit ff6743b468

View File

@ -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;