Fix updater removing all files.

Yeah, I don't know what I was thinking, but somehow it worked before.
This commit is contained in:
Andrew 2013-12-12 17:10:43 -06:00
parent 45aa858090
commit a954fc1a32

View File

@ -242,10 +242,18 @@ void DownloadUpdateTask::processFileLists()
for (VersionFileEntry newEntry : m_nVersionFileList)
{
if (newEntry.path == entry.path)
continue;
{
QLOG_DEBUG() << "Not deleting" << entry.path << "because it is still present in the new version.";
goto SkipFile;
}
}
// If the loop reaches the end, we didn't find a match. Delete the file.
m_operationList.append(UpdateOperation::DeleteOp(entry.path));
SkipFile:
// We goto here from the inner loop if we find an entry that has a corresponding entry in the new version's file list.
// This allows us to effectively continue the outer loop from the inner loop.
// In this case, goto is the more readable option.
}
// Create a network job for downloading files.