Browse Source

fix missing context copies

pull/2817/head
Jason Dove 6 months ago
parent
commit
92331a5fa6
No known key found for this signature in database
  1. 6
      ErsatzTV.Core/Domain/PlayoutItem.cs

6
ErsatzTV.Core/Domain/PlayoutItem.cs

@ -84,7 +84,8 @@ public class PlayoutItem
CollectionKey = CollectionKey, CollectionKey = CollectionKey,
CollectionEtag = CollectionEtag, CollectionEtag = CollectionEtag,
PlayoutItemWatermarks = watermarksCopy, PlayoutItemWatermarks = watermarksCopy,
PlayoutItemGraphicsElements = graphicsElementsCopy PlayoutItemGraphicsElements = graphicsElementsCopy,
SchedulingContext = SchedulingContext
}; };
} }
@ -130,7 +131,8 @@ public class PlayoutItem
CollectionKey = CollectionKey, CollectionKey = CollectionKey,
CollectionEtag = CollectionEtag, CollectionEtag = CollectionEtag,
PlayoutItemWatermarks = watermarksCopy, PlayoutItemWatermarks = watermarksCopy,
PlayoutItemGraphicsElements = graphicsElementsCopy PlayoutItemGraphicsElements = graphicsElementsCopy,
SchedulingContext = SchedulingContext
}; };
} }

Loading…
Cancel
Save