Skip to content

Commit

Permalink
Disable media tunneling by default on Sony A90J (BRAVIA_VH2)
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiGr committed Jun 12, 2023
1 parent fdc98ed commit a184fe9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/src/main/java/org/schabi/newpipe/util/DeviceUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ public final class DeviceUtils {
// Philips QM16XE
private static final boolean QM16XE_U = Build.VERSION.SDK_INT == 23
&& Build.DEVICE.equals("QM16XE_U");
// Sony A90J
private static final boolean BRAVIA_VH2 = Build.VERSION.SDK_INT == 29
&& Build.DEVICE.equals("BRAVIA_VH2");

private DeviceUtils() {
}
Expand Down Expand Up @@ -254,6 +257,7 @@ public static boolean shouldSupportMediaTunneling() {
return !HI3798MV200
&& !CVT_MT5886_EU_1G
&& !REALTEKATV
&& !QM16XE_U;
&& !QM16XE_U
&& !BRAVIA_VH2;
}
}

0 comments on commit a184fe9

Please sign in to comment.