fix(YouTube): Use correct query parameters for DeArrow requests (#6780)

This commit is contained in:
Itroublve 2026-03-15 11:16:51 +01:00 committed by GitHub
parent 5e1f899a3b
commit 02a48e7a5f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -238,8 +238,8 @@ public final class AlternativeThumbnailsPatch {
// See https://github.com/ajayyy/DeArrowThumbnailCache/blob/29eb4359ebdf823626c79d944a901492d760bbbc/app.py#L29. // See https://github.com/ajayyy/DeArrowThumbnailCache/blob/29eb4359ebdf823626c79d944a901492d760bbbc/app.py#L29.
return dearrowAPIURI return dearrowAPIURI
.buildUpon() .buildUpon()
.appendQueryParameter("videoId", videoId) .appendQueryParameter("videoID", videoId)
.appendQueryParameter("redirectURL", fallbackURL) .appendQueryParameter("redirectUrl", fallbackURL)
.build() .build()
.toString(); .toString();
} }