diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-06-28 21:10:45 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-06-28 21:10:45 -0400 |
| commit | b1be09242c6c82a9bf747e5256da6dd422309ad9 (patch) | |
| tree | 6cf63e873befc1bb45dbe521317b63e2270567ff /MediaBrowser.Controller/Entities/Person.cs | |
| parent | b3dd4beb8a5dd806dd06eff240a29869e07f9bf0 (diff) | |
update people saving
Diffstat (limited to 'MediaBrowser.Controller/Entities/Person.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Person.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Person.cs b/MediaBrowser.Controller/Entities/Person.cs index bbd112de0..390fcaf80 100644 --- a/MediaBrowser.Controller/Entities/Person.cs +++ b/MediaBrowser.Controller/Entities/Person.cs @@ -78,6 +78,15 @@ namespace MediaBrowser.Controller.Entities { return i => LibraryManager.GetPeople(i).Any(p => string.Equals(p.Name, Name, StringComparison.OrdinalIgnoreCase)); } + + [IgnoreDataMember] + public override bool SupportsPeople + { + get + { + return false; + } + } } /// <summary> |
