diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2023-11-23 23:09:06 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-23 23:09:06 +0100 |
| commit | 0be2817ccb5136746dc8e576d8ff05fb48ee5e29 (patch) | |
| tree | 93fe04d8230d0ec790ea8dce669297a4ab3735b5 /MediaBrowser.Controller | |
| parent | f19492c1de848642926b63b29ce78a65ca78f421 (diff) | |
| parent | eb2bcc91c5e8182bddf1ab5d6ee2a951da66e9c6 (diff) | |
Merge pull request #10371 from Pithaya/feat/book-persons
Allow persons on books
Diffstat (limited to 'MediaBrowser.Controller')
| -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 63f9180fd..66dea1084 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] |
