mirror of
https://github.com/nzbget/nzbget.git
synced 2026-01-22 21:07:53 -05:00
fixed: par-checking should not be started on deleting of collections from queue
This commit is contained in:
@@ -189,9 +189,17 @@ void PrePostProcessor::QueueCoordinatorUpdate(Subject * Caller, void * Aspect)
|
||||
{
|
||||
char szNZBNiceName[1024];
|
||||
pAspect->pFileInfo->GetNiceNZBName(szNZBNiceName, 1024);
|
||||
info("Collection %s completely downloaded", szNZBNiceName);
|
||||
if (pAspect->eAction == QueueCoordinator::eaFileCompleted)
|
||||
{
|
||||
info("Collection %s completely downloaded", szNZBNiceName);
|
||||
}
|
||||
else
|
||||
{
|
||||
info("Collection %s deleted from queue", szNZBNiceName);
|
||||
}
|
||||
#ifndef DISABLE_PARCHECK
|
||||
if (g_pOptions->GetParCheck())
|
||||
if (g_pOptions->GetParCheck() &&
|
||||
pAspect->eAction == QueueCoordinator::eaFileCompleted)
|
||||
{
|
||||
CheckPars(pAspect->pDownloadQueue, pAspect->pFileInfo);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user