From 47a240c2ac45d1ae65651e207eb0743de9962692 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Tue, 12 Nov 2013 08:56:48 -0500 Subject: [PATCH] Fix file verification always occurring. --- DepotDownloader/ContentDownloader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DepotDownloader/ContentDownloader.cs b/DepotDownloader/ContentDownloader.cs index 5ea8565d..aa5c8b83 100644 --- a/DepotDownloader/ContentDownloader.cs +++ b/DepotDownloader/ContentDownloader.cs @@ -608,7 +608,7 @@ namespace DepotDownloader { neededChunks = new List(); - if (oldManifestFile.FileHash != file.FileHash) + if (!oldManifestFile.FileHash.SequenceEqual(file.FileHash)) { // we have a version of this file, but it doesn't fully match what we want