From 92331a5fa6d28dd46308a1c6c385bce9744faeb1 Mon Sep 17 00:00:00 2001 From: Jason Dove <1695733+jasongdove@users.noreply.github.com> Date: Thu, 5 Feb 2026 13:44:39 -0600 Subject: [PATCH] fix missing context copies --- ErsatzTV.Core/Domain/PlayoutItem.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ErsatzTV.Core/Domain/PlayoutItem.cs b/ErsatzTV.Core/Domain/PlayoutItem.cs index bcd62fc79..318c15d88 100644 --- a/ErsatzTV.Core/Domain/PlayoutItem.cs +++ b/ErsatzTV.Core/Domain/PlayoutItem.cs @@ -84,7 +84,8 @@ public class PlayoutItem CollectionKey = CollectionKey, CollectionEtag = CollectionEtag, PlayoutItemWatermarks = watermarksCopy, - PlayoutItemGraphicsElements = graphicsElementsCopy + PlayoutItemGraphicsElements = graphicsElementsCopy, + SchedulingContext = SchedulingContext }; } @@ -130,7 +131,8 @@ public class PlayoutItem CollectionKey = CollectionKey, CollectionEtag = CollectionEtag, PlayoutItemWatermarks = watermarksCopy, - PlayoutItemGraphicsElements = graphicsElementsCopy + PlayoutItemGraphicsElements = graphicsElementsCopy, + SchedulingContext = SchedulingContext }; }