Skip to content

Commit dc7e5ef

Browse files
committed
bugfix for streamer InferIgnoredImages option
1 parent a1e0135 commit dc7e5ef

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
**Warning:** Features marked as *alpha* may change or be removed in a future release without notice. Use with caution.
66

7+
## [0.10.1] - 2025-05-08
8+
9+
### Fixed
10+
11+
- Streamer was ignoring `InferIgnoredImages` parameter
12+
713
## [0.10.0] - 2025-05-08
814

915
### Added

pkg/streamer/streamer.go

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,12 @@ func New(config Config) Streamer { // TODO contentProtections
7676
}
7777

7878
return Streamer{
79-
parsers: config.Parsers,
80-
inferA11yMetadata: config.InferA11yMetadata,
81-
inferPageCount: config.InferPageCount,
82-
archiveFactory: config.ArchiveFactory,
83-
httpClient: config.HttpClient,
79+
parsers: config.Parsers,
80+
inferA11yMetadata: config.InferA11yMetadata,
81+
inferPageCount: config.InferPageCount,
82+
inferIgnoredImages: config.InferIgnoredImages,
83+
archiveFactory: config.ArchiveFactory,
84+
httpClient: config.HttpClient,
8485
}
8586
}
8687

0 commit comments

Comments
 (0)