aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShadowghost <Shadowghost@users.noreply.github.com>2026-09-15 11:17:00 -0400
committerCody Robibero <cody@robibe.ro>2026-09-15 11:17:00 -0400
commitcff4908870708fd49bc37b0c0308660fe0d335fc (patch)
treeb23efc37c540deb7d9338bc62d88bdb32dad9e46
parent42245b9b25ef278abc1127c543357aeecf8de6d0 (diff)
Backport pull request #18011 from jellyfin/release-12.z
Restore [JsonIgnore] on AggregateFolder.Children Original-merge: 2a4377688165cdbfb5af7bdc0e014efd832bf619 Merged-by: crobibero <cody@robibe.ro> Backported-by: Cody Robibero <cody@robibe.ro>
-rw-r--r--MediaBrowser.Controller/Entities/AggregateFolder.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/AggregateFolder.cs b/MediaBrowser.Controller/Entities/AggregateFolder.cs
index bb770fc6f3..ef24f632ed 100644
--- a/MediaBrowser.Controller/Entities/AggregateFolder.cs
+++ b/MediaBrowser.Controller/Entities/AggregateFolder.cs
@@ -57,6 +57,7 @@ namespace MediaBrowser.Controller.Entities
// Children caches the resolved items, _childrenIds the ids they were loaded from. Clearing
// only the former sends the next read back through LoadChildren, which replays the stale
// id list, so a caller invalidating this folder has to drop both.
+ [JsonIgnore]
public override IEnumerable<BaseItem> Children
{
get => base.Children;