diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-29 17:00:27 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-08-29 17:00:27 -0400 |
| commit | 982a30394018a9262aae0fafc56c736635ba27ed (patch) | |
| tree | 41e942f3df0b6cbae9a677bb3edbb4d43af40e9a /MediaBrowser.Controller/Entities/BaseItem.cs | |
| parent | 528292e496ef1cb6e226937f09774e57996d03db (diff) | |
added IsMuted to playback progress
Diffstat (limited to 'MediaBrowser.Controller/Entities/BaseItem.cs')
| -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 a75dc47e1d..3c8c2411ec 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -1211,7 +1211,7 @@ namespace MediaBrowser.Controller.Entities else { // Check for dupes based on the combination of Name and Type - if (!People.Any(p => p.Name.Equals(person.Name, StringComparison.OrdinalIgnoreCase) && p.Type.Equals(person.Type, StringComparison.OrdinalIgnoreCase))) + if (!People.Any(p => string.Equals(p.Name, person.Name, StringComparison.OrdinalIgnoreCase) && string.Equals(p.Type, person.Type, StringComparison.OrdinalIgnoreCase))) { People.Add(person); } |
