Implement BaseItem.GetHashCode override

This commit is contained in:
Vasily 2020-03-04 13:06:13 +03:00
parent f21cd30039
commit 007c5b9f67
1 changed files with 5 additions and 0 deletions

View File

@ -2935,5 +2935,10 @@ namespace MediaBrowser.Controller.Entities
return Id == item.Id;
}
public override int GetHashCode()
{
return Id.GetHashCode();
}
}
}