From cc590f82b9fd29ecbc500cecc335411a4e8f6ec7 Mon Sep 17 00:00:00 2001 From: Pithaya <19533412+Pithaya@users.noreply.github.com> Date: Sun, 8 Oct 2023 01:08:03 +0200 Subject: [PATCH] Allow people on books --- MediaBrowser.Controller/Entities/Book.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MediaBrowser.Controller/Entities/Book.cs b/MediaBrowser.Controller/Entities/Book.cs index d75beb06da..519dfa82aa 100644 --- a/MediaBrowser.Controller/Entities/Book.cs +++ b/MediaBrowser.Controller/Entities/Book.cs @@ -24,6 +24,9 @@ namespace MediaBrowser.Controller.Entities public override bool SupportsPositionTicksResume => true; + [JsonIgnore] + public override bool SupportsPeople => true; + [JsonIgnore] public string SeriesPresentationUniqueKey { get; set; }