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

Commit 0113bc0c authored by Long Ling's avatar Long Ling
Browse files

[DO NOT MERGE] Check property name before apply high refresh rate black list

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