mirror of
https://github.com/FroggMaster/CreamInstaller.git
synced 2026-06-12 11:01:23 -07:00
fix refresh queries nre
This commit is contained in:
@@ -59,7 +59,7 @@ internal sealed class Selection : IEquatable<Selection>
|
||||
|
||||
internal bool Enabled { get => TreeNode.Checked; set => TreeNode.Checked = value; }
|
||||
|
||||
internal IEnumerable<SelectionDLC> DLC => SelectionDLC.All.Keys.Where(dlc => dlc.Selection.Equals(this));
|
||||
internal IEnumerable<SelectionDLC> 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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user