diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-12-19 11:31:54 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-19 11:31:54 -0700 |
| commit | db46eaa744c2f198c48c96649efefa2c95a69668 (patch) | |
| tree | 84b6c9948a4b8ac42f0af26f88253c107363f693 /MediaBrowser.Controller | |
| parent | 71f6326e1a847e36c078cbfa47d8f065c2ec527a (diff) | |
| parent | 91f3ce31096070fa21409aedcbd45e2a530833fe (diff) | |
Merge pull request #7021 from cvium/baseitem_closure
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index 4114ff7b0..82d11c523 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -2739,7 +2739,7 @@ namespace MediaBrowser.Controller.Entities } /// <inheritdoc /> - public bool Equals(BaseItem other) => Equals(Id, other?.Id); + public bool Equals(BaseItem other) => Id == other?.Id; /// <inheritdoc /> public override int GetHashCode() => HashCode.Combine(Id); |
