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

Commit 924d482a authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "SmartSelection ConfigUpdater: Ignore version numbers" into oc-dev

parents 337be5a1 78b6a561
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -162,7 +162,7 @@ public class ConfigUpdateInstallReceiver extends BroadcastReceiver {
        }
    }

    private boolean verifyVersion(int current, int alternative) {
    protected boolean verifyVersion(int current, int alternative) {
        return (current < alternative);
    }

+5 −1
Original line number Diff line number Diff line
@@ -25,5 +25,9 @@ public class SmartSelectionInstallReceiver extends ConfigUpdateInstallReceiver {
            "metadata/smartselection",
            "version");
    }
}

    @Override
    protected boolean verifyVersion(int current, int alternative) {
        return true;
    }
}