1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-11-01 07:05:14 +00:00
The iOS client is not subject to integrity checks and is likely to be a more stable choice going forward

Authored by: bashonly
This commit is contained in:
bashonly
2023-11-07 14:55:12 -06:00
parent 21b25281c5
commit fd8fcf8f4f
2 changed files with 2 additions and 2 deletions

View File

@@ -3619,7 +3619,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
def _get_requested_clients(self, url, smuggled_data):
requested_clients = []
default = ['android', 'web', 'ios']
default = ['ios', 'android', 'web']
allowed_clients = sorted(
(client for client in INNERTUBE_CLIENTS.keys() if client[:1] != '_'),
key=lambda client: INNERTUBE_CLIENTS[client]['priority'], reverse=True)