fix(YouTube - Spoof video streams): Change default client to Android TV (#4465)

This commit is contained in:
LisoUseInAIKyrios
2025-02-16 18:34:12 +02:00
committed by GitHub
parent 128441e78b
commit 0412c7901d
5 changed files with 20 additions and 24 deletions

View File

@ -85,7 +85,7 @@ public class SpoofStreamingDataSideEffectsPreference extends Preference {
String summary = str(key + "_summary");
// Android VR supports AV1 but all other clients do not.
if (clientType != ClientType.ANDROID_VR && clientType != ClientType.ANDROID_VR_NO_AUTH) {
if (clientType != ClientType.ANDROID_VR_AUTH && clientType != ClientType.ANDROID_VR_NO_AUTH) {
summary += '\n' + str("revanced_spoof_video_streams_about_no_av1");
}