@ -28,6 +28,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
@@ -28,6 +28,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- `Templates` - a generic "day" that consists of blocks scheduled at specific times
- `Playout Templates` - templates to schedule using the specified criteria. Only one template will be selected each day
- Much more to come on this feature as development continues
- Show chapter markers in movie and episode media info
### Fixed
- Fix error loading path replacements when using MySql
@ -31,8 +31,12 @@ public class GetMediaItemInfoHandler : IRequestHandler<GetMediaItemInfo, Either<
@@ -31,8 +31,12 @@ public class GetMediaItemInfoHandler : IRequestHandler<GetMediaItemInfo, Either<
.Include(i=>(iasMovie).MovieMetadata)
.ThenInclude(mv=>mv.Subtitles)
.Include(i=>(iasMovie).MediaVersions)
.ThenInclude(mv=>mv.Chapters)
.Include(i=>(iasMovie).MediaVersions)
.ThenInclude(mv=>mv.Streams)
.Include(i=>(iasEpisode).MediaVersions)
.ThenInclude(mv=>mv.Chapters)
.Include(i=>(iasEpisode).MediaVersions)
.ThenInclude(mv=>mv.Streams)
.Include(i=>(iasEpisode).EpisodeMetadata)
.ThenInclude(mv=>mv.Subtitles)
@ -71,6 +75,8 @@ public class GetMediaItemInfoHandler : IRequestHandler<GetMediaItemInfo, Either<
@@ -71,6 +75,8 @@ public class GetMediaItemInfoHandler : IRequestHandler<GetMediaItemInfo, Either<
// include external subtitles from local libraries
@ -85,7 +91,8 @@ public class GetMediaItemInfoHandler : IRequestHandler<GetMediaItemInfo, Either<
@@ -85,7 +91,8 @@ public class GetMediaItemInfoHandler : IRequestHandler<GetMediaItemInfo, Either<
@ -129,4 +136,7 @@ public class GetMediaItemInfoHandler : IRequestHandler<GetMediaItemInfo, Either<
@@ -129,4 +136,7 @@ public class GetMediaItemInfoHandler : IRequestHandler<GetMediaItemInfo, Either<