Skip to content

Commit 420fc2f

Browse files
committed
Simplify
1 parent d91407c commit 420fc2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Requester.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public async Task ProcessPackages(List<PICSRequest> packages, List<uint> storePa
5656
{
5757
if (storePackages.Count > 0 && !config.SkipAutoGrant) // Just ignore store data if user configured to skip autogrant packages
5858
{
59-
var ownedPackages = new HashSet<uint>(Math.Max(packages.Count, storePackages.Count));
59+
var ownedPackages = new HashSet<uint>(packages.Count);
6060
var onlyStorePackages = new List<uint>();
6161

6262
foreach (var package in packages)

0 commit comments

Comments
 (0)