diff --git a/CHANGELOG.md b/CHANGELOG.md index bc3de1cf3..aa3388006 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Fixed a issue on iOS where the player crashed when it was destroyed while in fullscreen. +### Changed + +- Moved the `hlsDateRange` property from `SourceConfiguration` to its correct location in `TypedSource`. + ## [10.1.0] - 25-10-06 ### Added diff --git a/src/api/source/SourceDescription.ts b/src/api/source/SourceDescription.ts index 66341eaf0..0fa4f2b65 100644 --- a/src/api/source/SourceDescription.ts +++ b/src/api/source/SourceDescription.ts @@ -104,13 +104,6 @@ export interface SourceConfiguration { */ timeServer?: string; - /** - * Whether the player should parse and expose date ranges from HLS playlists. - * - * @defaultValue `false` - */ - hlsDateRange?: boolean; - /** * Describes the metadata of a source. * @@ -327,6 +320,13 @@ export interface BaseSource { */ timeServer?: string; + /** + * Whether the player should parse and expose date ranges from HLS manifests. + * + * @defaultValue `false` + */ + hlsDateRange?: boolean; + /** * Whether the source should be played in the low-latency-mode of the player. *