Skip to content

Commit

Permalink
fix "show neighbour cell setting did not take effect for home screen"
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterHasse committed Jul 25, 2024
1 parent 2086e17 commit a3a45b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ private CardView get_cell_card_view() {
List<CellInformation> cil = dp.getCellInformation();
int cell = 1;
for (CellInformation ci : cil) {
if (!spg.getSharedPreference(SPType.logging_sp).getBoolean("show_neighbour_cells", false) && ! ci.isRegistered()) {
if (!spg.getSharedPreference(SPType.default_sp).getBoolean("show_neighbour_cells", false) && ! ci.isRegistered()) {
continue;
}

Expand Down

0 comments on commit a3a45b8

Please sign in to comment.