Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Citrinate committed May 8, 2024
1 parent 0b7ae6c commit 5a4fac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FreePackages/Data/BotCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ internal bool RemovePackage(Package package) {
}

internal bool RemoveAppPackages(HashSet<uint> appIDsToRemove) {
Packages.Where(x => appIDsToRemove.Contains(x.ID)).ToList().ForEach(x => Packages.Remove(x));
Packages.Where(x => x.Type == EPackageType.App && appIDsToRemove.Contains(x.ID)).ToList().ForEach(x => Packages.Remove(x));
Utilities.InBackground(Save);

return true;
Expand Down

0 comments on commit 5a4fac8

Please sign in to comment.