mirror of
https://github.com/nzbget/nzbget.git
synced 2026-04-20 12:56:53 -04:00
#362: fixed inner sorting
This commit is contained in:
@@ -1276,7 +1276,7 @@ void QueueEditor::SortGroupFiles(NzbInfo* nzbInfo)
|
||||
}
|
||||
else if (fileInfo1->GetParFile() && fileInfo2->GetParFile())
|
||||
{
|
||||
return fileInfo1->GetSize() <= fileInfo2->GetSize();
|
||||
return fileInfo1->GetSize() < fileInfo2->GetSize();
|
||||
}
|
||||
|
||||
return !fileInfo1->GetParFile() && fileInfo2->GetParFile();
|
||||
|
||||
Reference in New Issue
Block a user