Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8f962122 authored by Raff Tsai's avatar Raff Tsai Committed by android-build-merger
Browse files

Merge "Prevent null point exception" am: 45b03edd am: bfa1f297

am: 14990a19

Change-Id: I5ef5583fb0c1a0943941a378d4421bedec703371
parents 15909104 14990a19
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ public class VideoPreferenceController extends BasePreferenceController implemen

    @Override
    public int getAvailabilityStatus() {
        return mVideoPreference.isAnimationAvailable() ?
        return mVideoPreference != null && mVideoPreference.isAnimationAvailable() ?
                AVAILABLE_UNSEARCHABLE : UNSUPPORTED_ON_DEVICE;
    }