From 0ab391a27236cdea9654308448e9c9e8d7405f48 Mon Sep 17 00:00:00 2001 From: azuisleet Date: Thu, 8 Dec 2011 19:58:08 -0700 Subject: [PATCH] Refactored Keyvalue to use strings. Removed System.Web dependency. --- DepotDownloader/ContentDownloader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DepotDownloader/ContentDownloader.cs b/DepotDownloader/ContentDownloader.cs index 6467be77..f909f6e2 100644 --- a/DepotDownloader/ContentDownloader.cs +++ b/DepotDownloader/ContentDownloader.cs @@ -145,7 +145,7 @@ namespace DepotDownloader .Where(c => c.Name == "manifests").First().Children .Where(d => d.Name == "Public").First(); - manifest_id = ulong.Parse(node.AsString(null)); + manifest_id = UInt64.Parse(node.Value); return true; } }