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/Genre.cs | |
| parent | b3dd4beb8a5dd806dd06eff240a29869e07f9bf0 (diff) | |
update people saving
Diffstat (limited to 'MediaBrowser.Controller/Entities/Genre.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Genre.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Genre.cs b/MediaBrowser.Controller/Entities/Genre.cs index cb68e5dae9..233e1e0fd1 100644 --- a/MediaBrowser.Controller/Entities/Genre.cs +++ b/MediaBrowser.Controller/Entities/Genre.cs @@ -66,5 +66,14 @@ namespace MediaBrowser.Controller.Entities { return i => !(i is Game) && !(i is IHasMusicGenres) && i.Genres.Contains(Name, StringComparer.OrdinalIgnoreCase); } + + [IgnoreDataMember] + public override bool SupportsPeople + { + get + { + return false; + } + } } } |
