Browse Source

fix yaml playout progress (#2308)

pull/2309/head
Jason Dove 4 days ago committed by GitHub
parent
commit
d28d0a9805
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      CHANGELOG.md
  2. 1
      ErsatzTV.Application/Playouts/Commands/BuildPlayoutHandler.cs

2
CHANGELOG.md

@ -50,6 +50,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). @@ -50,6 +50,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Fix overlapping block playout items caused by `Stop scheduling block items` value `After Duration End`
- Existing overlapping items will not be removed, but no new overlapping items will be created
- Until these existing items age out, there will be warnings logged after each playout build/extension
- Fix playback of anamorphic content from Jellyfin
- This fix requires a manual deep scan of any affected Jellyfin library
### Changed
- Allow multiple watermarks in playback troubleshooting

1
ErsatzTV.Application/Playouts/Commands/BuildPlayoutHandler.cs

@ -282,6 +282,7 @@ public class BuildPlayoutHandler : IRequestHandler<BuildPlayout, Either<BaseErro @@ -282,6 +282,7 @@ public class BuildPlayoutHandler : IRequestHandler<BuildPlayout, Either<BaseErro
BuildPlayout buildPlayout)
{
var maybePlayout = await dbContext.Playouts
.Include(p => p.Anchor)
.SelectOneAsync(p => p.Id, p => p.Id == buildPlayout.PlayoutId);
foreach (var playout in maybePlayout)

Loading…
Cancel
Save