We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7754caf + fe3f950 commit 961570aCopy full SHA for 961570a
CHANGELOG.md
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
16
- Corrected the short video resolution in the UI (#366)
17
- Check for empty playlists after filtering, and after downloading videos (#375)
18
+- Unlisted videos must also be included inside the ZIM (#379)
19
20
## [3.2.1] - 2024-11-01
21
scraper/src/youtube2zim/youtube.py
@@ -332,7 +332,7 @@ def skip_deleted_videos(item):
332
333
def skip_non_public_videos(item):
334
"""filter func to filter-out non-public videos"""
335
- return item["status"]["privacyStatus"] == "public"
+ return item["status"]["privacyStatus"] in ("public", "unlisted")
336
337
338
def skip_outofrange_videos(date_range, item):
0 commit comments