From bf92eb63e5c4e8fc6772875919af86bc3e7f924b Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Fri, 8 Nov 2013 08:06:52 -0500 Subject: [PATCH] Ignore "depotfromapp" depots for now. --- DepotDownloader/ContentDownloader.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/DepotDownloader/ContentDownloader.cs b/DepotDownloader/ContentDownloader.cs index f9eae65d..bb91eb4f 100644 --- a/DepotDownloader/ContentDownloader.cs +++ b/DepotDownloader/ContentDownloader.cs @@ -246,6 +246,10 @@ namespace DepotDownloader if (node.Value == null) return INVALID_MANIFEST_ID; + // These are broken and don't care enough to figure out why at the moment + if (depotChild["depotfromapp"] != KeyValue.Invalid) + return INVALID_MANIFEST_ID; + return UInt64.Parse(node.Value); }