Fix Hashcode

This commit is contained in:
Vic 2022-12-06 22:47:27 +08:00
parent 66dee47edc
commit bfb29e384d

View file

@ -83,7 +83,7 @@ namespace Flow.Launcher.Plugin.Program.Views.Models
public override int GetHashCode()
{
return HashCode.Combine(UniqueIdentifier);
return uniqueIdentifier.GetHashCode();
}
}
}