From 8914bc5c67d1576f0d4390ab76d74a94e140a6ee Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Tue, 7 Jun 2016 21:42:32 -0400 Subject: [PATCH] Fix issues when downloading content in shared depots when shared depot is owned but app it is from is not. --- DepotDownloader/ContentDownloader.cs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/DepotDownloader/ContentDownloader.cs b/DepotDownloader/ContentDownloader.cs index 51e16dd0..dd1d914e 100644 --- a/DepotDownloader/ContentDownloader.cs +++ b/DepotDownloader/ContentDownloader.cs @@ -220,14 +220,7 @@ namespace DepotDownloader steam3.RequestAppInfo(otherAppId); - if (AccountHasAccess(otherAppId)) - { - return GetSteam3DepotManifest(depotId, otherAppId, branch); - } else { - string contentName = GetAppOrDepotName(INVALID_DEPOT_ID, otherAppId); - string contentDepotName = GetAppOrDepotName(depotId, appId); - Console.WriteLine("Dependent app {0} ({1}) for depot {2} ({3}) is not available from this account.", otherAppId, contentName, depotId, contentDepotName); - } + return GetSteam3DepotManifest(depotId, otherAppId, branch); } var manifests = depotChild["manifests"];