diff options
| author | Samantaz Fox <coding@samantaz.fr> | 2023-06-02 23:24:19 +0200 |
|---|---|---|
| committer | Samantaz Fox <coding@samantaz.fr> | 2023-06-09 21:05:48 +0200 |
| commit | d9521c82cfcf4fb40323938a94d74aa552a2f517 (patch) | |
| tree | 8c7dfccc5f8ac8ccecdc54e483a0de5bf9a445d4 /src | |
| parent | 505a1566d1769720e9d4c4a9899811f323f6f650 (diff) | |
| download | invidious-d9521c82cfcf4fb40323938a94d74aa552a2f517.tar.gz invidious-d9521c82cfcf4fb40323938a94d74aa552a2f517.tar.bz2 invidious-d9521c82cfcf4fb40323938a94d74aa552a2f517.zip | |
YT API: Bump iOS app version
Diffstat (limited to 'src')
| -rw-r--r-- | src/invidious/yt_backend/youtube_api.cr | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/invidious/yt_backend/youtube_api.cr b/src/invidious/yt_backend/youtube_api.cr index 91a9332c..a1a54d60 100644 --- a/src/invidious/yt_backend/youtube_api.cr +++ b/src/invidious/yt_backend/youtube_api.cr @@ -12,11 +12,13 @@ module YoutubeAPI private ANDROID_USER_AGENT = "com.google.android.youtube/17.33.42 (Linux; U; Android 12; US) gzip" private ANDROID_SDK_VERSION = 31_i64 private ANDROID_VERSION = "12" - private IOS_APP_VERSION = "17.33.2" + + private IOS_APP_VERSION = "18.21.3" # github.com/TeamNewPipe/NewPipeExtractor/blob/943b7c033bb9d07ead63ddab4441c287653e4384/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeParsingHelper.java#L1330 - private IOS_USER_AGENT = "com.google.ios.youtube/17.33.2 (iPhone14,5; U; CPU iOS 15_6 like Mac OS X;)" + private IOS_USER_AGENT = "com.google.ios.youtube/18.21.3 (iPhone14,5; U; CPU iOS 15_6 like Mac OS X;)" # github.com/TeamNewPipe/NewPipeExtractor/blob/943b7c033bb9d07ead63ddab4441c287653e4384/extractor/src/main/java/org/schabi/newpipe/extractor/services/youtube/YoutubeParsingHelper.java#L1224 - private IOS_VERSION = "15.6.0.19G71" + private IOS_VERSION = "15.6.0.19G71" + private WINDOWS_VERSION = "10.0" # Enumerate used to select one of the clients supported by the API |
