DepotDownloader: Fixed regression in downloading some Steam3 apps.

pull/8/head
Nicholas Hastings 13 years ago
parent 7676ff1cef
commit 2d8d51f10b

@ -237,6 +237,10 @@ namespace DepotDownloader
if (depotChild == null)
return false;
int id;
if (!int.TryParse(depotChild.Name, out id))
continue;
var node = depotChild["manifests"]["Public"];
if (node.Value == null)

Loading…
Cancel
Save