diff options
| author | Pithaya <19533412+Pithaya@users.noreply.github.com> | 2023-10-08 01:08:03 +0200 |
|---|---|---|
| committer | Pithaya <19533412+Pithaya@users.noreply.github.com> | 2023-10-08 01:08:03 +0200 |
| commit | cc590f82b9fd29ecbc500cecc335411a4e8f6ec7 (patch) | |
| tree | e42720df35dec2d5b1a13ae05d656eb75faec413 | |
| parent | 1141883f7734126aefc1d33172261a278c3ada84 (diff) | |
Allow people on books
| -rw-r--r-- | MediaBrowser.Controller/Entities/Book.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Book.cs b/MediaBrowser.Controller/Entities/Book.cs index d75beb06d..519dfa82a 100644 --- a/MediaBrowser.Controller/Entities/Book.cs +++ b/MediaBrowser.Controller/Entities/Book.cs @@ -25,6 +25,9 @@ namespace MediaBrowser.Controller.Entities public override bool SupportsPositionTicksResume => true; [JsonIgnore] + public override bool SupportsPeople => true; + + [JsonIgnore] public string SeriesPresentationUniqueKey { get; set; } [JsonIgnore] |
