We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f82781 commit 5af948aCopy full SHA for 5af948a
API/MSStore/StoreDownloader/MSStoreDownloader.cs
@@ -95,7 +95,7 @@ public static async Task<string[]> DownloadPackageAsync(IEnumerable<UpdateData>
95
files.AddRange(await FE3Handler.GetFileUrls(update, msaToken));
96
}
97
98
- List<UUPFile> fileList = appfiles.Select(boundApp =>
+ List<UUPFile> fileList = appfiles.Where(app => !app.Targets.Any(t => t.Contains("Xbox"))).Select(boundApp =>
99
{
100
return new UUPFile(
101
files.First(x => x.Digest == boundApp.Digest),
0 commit comments