From dbd0f8112461b529c3b061fe2d2ab49c84e72404 Mon Sep 17 00:00:00 2001 From: pointfeev Date: Fri, 15 Sep 2023 18:59:35 -0400 Subject: [PATCH] fix refresh queries nre --- CreamInstaller/Selection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CreamInstaller/Selection.cs b/CreamInstaller/Selection.cs index 59b90bf..bae8c9b 100644 --- a/CreamInstaller/Selection.cs +++ b/CreamInstaller/Selection.cs @@ -59,7 +59,7 @@ internal sealed class Selection : IEquatable internal bool Enabled { get => TreeNode.Checked; set => TreeNode.Checked = value; } - internal IEnumerable DLC => SelectionDLC.All.Keys.Where(dlc => dlc.Selection.Equals(this)); + internal IEnumerable DLC => SelectionDLC.All.Keys.Where(dlc => Equals(dlc.Selection, this)); public bool Equals(Selection other) => other is not null && (ReferenceEquals(this, other) || Id == other.Id && Platform == other.Platform);