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

Commit 9e86b9fd authored by Long Ling's avatar Long Ling Committed by android-build-merger
Browse files

[DO NOT MERGE] Check property name before apply high refresh rate black list am: 0113bc0c

am: c5a8ec62

Change-Id: Iec5420dc8a41fff840101e41083406f5baf18ec8
parents d49b8110 c5a8ec62
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -110,8 +110,10 @@ class HighRefreshRateBlacklist {
    private class OnPropertyChangedListener implements DeviceConfig.OnPropertyChangedListener {
    private class OnPropertyChangedListener implements DeviceConfig.OnPropertyChangedListener {
        public void onPropertyChanged(@NonNull String namespace, @NonNull String name,
        public void onPropertyChanged(@NonNull String namespace, @NonNull String name,
                @Nullable String value) {
                @Nullable String value) {
            if (KEY_HIGH_REFRESH_RATE_BLACKLIST.equals(name)) {
                updateBlacklist(value);
                updateBlacklist(value);
            }
            }
        }
        }
    }
    }
}