Skip to content

Commit 9a45944

Browse files
authored
Merge pull request #407 from DialmasterOrg/fix/new-sporadic-403-error-fix
fix: exclude broken android_sdkless player client to prevent 403 errors
2 parents 2d45774 + ff60d21 commit 9a45944

File tree

8 files changed

+35
-8
lines changed

8 files changed

+35
-8
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
https://img.shields.io/badge/Backend_Coverage-81%25-brightgreen
1+
https://img.shields.io/badge/Backend_Coverage-79%25-yellow

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## [v1.57.0](https://github.com/DialmasterOrg/Youtarr/releases/tag/v1.57.0) - 2026-01-19
4+
5+
## [1.57.0](https://github.com/DialmasterOrg/Youtarr/compare/vv1.56.0...v1.57.0) (2026-01-19)
6+
7+
8+
### Features
9+
10+
* Channel videos enhancements ([b37f4e1](https://github.com/DialmasterOrg/Youtarr/commit/b37f4e1ea833ff697ecb773155ff734aae6c73f8))
11+
* Channel videos filtering ([dcd3046](https://github.com/DialmasterOrg/Youtarr/commit/dcd30462301d2d01bdace19887ac7f56279489a2))
12+
* **#309:** add support for mp3-only download ([dd57bbc](https://github.com/DialmasterOrg/Youtarr/commit/dd57bbc5c8371d9b82cad1eafaaf4617dac7f67d)), closes [#309](https://github.com/DialmasterOrg/Youtarr/issues/309)
13+
14+
15+
### Bug Fixes
16+
17+
* resolve coverage badges workflow failure ([a87640d](https://github.com/DialmasterOrg/Youtarr/commit/a87640d46764cf83f98c04513984a57102f2014a))
18+
19+
20+
### Documentation
21+
22+
* update CHANGELOG for v1.56.0 [skip ci] ([cee0c56](https://github.com/DialmasterOrg/Youtarr/commit/cee0c56e4b42aa58bdea7bd370747af69d16346e))
23+
24+
25+
26+
27+
328
## [v1.56.0](https://github.com/DialmasterOrg/Youtarr/releases/tag/v1.56.0) - 2026-01-04
429

530
## [1.56.0](https://github.com/DialmasterOrg/Youtarr/compare/vv1.55.0...v1.56.0) (2026-01-04)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Youtarr
22

3-
![Backend Coverage](https://img.shields.io/badge/Backend_Coverage-81%25-brightgreen)
3+
![Backend Coverage](https://img.shields.io/badge/Backend_Coverage-79%25-yellow)
44
![Frontend Coverage](https://img.shields.io/badge/Frontend_Coverage-84%25-brightgreen)
55
![CI Status](https://github.com/DialmasterOrg/Youtarr/workflows/CI%20-%20Lint%20and%20Test/badge.svg)
66

client/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "client",
3-
"version": "1.56.0",
3+
"version": "1.57.0",
44
"private": true,
55
"proxy": "http://localhost:3011",
66
"dependencies": {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "youtarr",
3-
"version": "1.56.0",
3+
"version": "1.57.0",
44
"description": "",
55
"main": "server/index.js",
66
"scripts": {

server/modules/download/ytdlpCommandBuilder.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,7 @@ class YtdlpCommandBuilder {
413413
'--write-info-json',
414414
'--no-write-playlist-metafiles',
415415
'--extractor-args', 'youtubetab:tab=videos;sort=dd',
416+
'--extractor-args', 'youtube:player_client=default,-android_sdkless',
416417
'--match-filter', matchFilter,
417418
'-o', outputPath,
418419
'--datebefore', 'now',
@@ -486,6 +487,7 @@ class YtdlpCommandBuilder {
486487
'--write-info-json',
487488
'--no-write-playlist-metafiles',
488489
'--extractor-args', 'youtubetab:tab=videos;sort=dd',
490+
'--extractor-args', 'youtube:player_client=default,-android_sdkless',
489491
'--match-filter', 'availability!=subscriber_only & !is_live & live_status!=is_upcoming',
490492
'-o', outputPath,
491493
'--datebefore', 'now',

0 commit comments

Comments
 (0)