Skip to content

Commit 5af948a

Browse files
committed
Fixed bug with downloading encrypted Xbox packages
1 parent 9f82781 commit 5af948a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

API/MSStore/StoreDownloader/MSStoreDownloader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public static async Task<string[]> DownloadPackageAsync(IEnumerable<UpdateData>
9595
files.AddRange(await FE3Handler.GetFileUrls(update, msaToken));
9696
}
9797

98-
List<UUPFile> fileList = appfiles.Select(boundApp =>
98+
List<UUPFile> fileList = appfiles.Where(app => !app.Targets.Any(t => t.Contains("Xbox"))).Select(boundApp =>
9999
{
100100
return new UUPFile(
101101
files.First(x => x.Digest == boundApp.Digest),

0 commit comments

Comments
 (0)