whoops, fixes comparison on lazy val
This commit is contained in:
@@ -53,7 +53,7 @@ namespace Umbraco.Core.Models
|
||||
|
||||
protected bool Equals(ContentTypeSort other)
|
||||
{
|
||||
return Id.Equals(other.Id) && string.Equals(Alias, other.Alias);
|
||||
return Id.Value.Equals(other.Id.Value) && string.Equals(Alias, other.Alias);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user