From 077a3a1610bae9ebbd36d525a1d93df5e1316801 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Tue, 21 Oct 2014 15:00:30 -0400 Subject: [PATCH] Fix error message about no servers for chunk. --- DepotDownloader/ContentDownloader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DepotDownloader/ContentDownloader.cs b/DepotDownloader/ContentDownloader.cs index 8a1a64af..9b3568f4 100644 --- a/DepotDownloader/ContentDownloader.cs +++ b/DepotDownloader/ContentDownloader.cs @@ -784,7 +784,7 @@ namespace DepotDownloader if (chunkData == null) { - Console.WriteLine("Failed to find any server with chunk {0} for depot {1}. Aborting.", chunkID, depot); + Console.WriteLine("Failed to find any server with chunk {0} for depot {1}. Aborting.", chunkID, depot.id); return; }