Browse Source

fixes

pull/2805/head
Jason Dove 6 months ago
parent
commit
5889d8b1f2
No known key found for this signature in database
  1. 2
      CHANGELOG.md
  2. 2
      ErsatzTV.Application/Scheduling/Commands/ErasePlayoutItemsHandler.cs

2
CHANGELOG.md

@ -65,7 +65,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). @@ -65,7 +65,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Sync Jellyfin and Emby library name and type changes
- Library type (movies, shows) can only be changed when synchronization is *disabled* for the library in ETV
- Fix some sequential and scripted playout build failures when using playlists or marathons
- Fix erasing playout items and erasing playout items and history so all related data is also erased
- Fix erasing playout items and history so all related data is also erased
- This includes rerun history, unscheduled gaps, build status
## [26.1.1] - 2026-01-08

2
ErsatzTV.Application/Scheduling/Commands/ErasePlayoutItemsHandler.cs

@ -47,7 +47,7 @@ public class ErasePlayoutItemsHandler(IDbContextFactory<TvContext> dbContextFact @@ -47,7 +47,7 @@ public class ErasePlayoutItemsHandler(IDbContextFactory<TvContext> dbContextFact
.ExecuteDeleteAsync(cancellationToken);
await dbContext.PlayoutGaps
.Where(ph => ph.PlayoutId == playout.Id)
.Where(pg => pg.PlayoutId == playout.Id)
.ExecuteDeleteAsync(cancellationToken);
await dbContext.PlayoutBuildStatus

Loading…
Cancel
Save