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

Commit e854f704 authored by Tony Mak's avatar Tony Mak
Browse files

Do not verify version in ConversationActions/LangIdInstallReceiver.

Just like SmartSelectionInstallReceiver, we don't care about the
version in the metadata file.

FIXES: 132239822
Change-Id: I45457e0b394c2c1974da54ba8ab36f71577df2ba
parent 1b959cf2
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -25,4 +25,9 @@ public class ConversationActionsInstallReceiver extends ConfigUpdateInstallRecei
                "metadata/actions_suggestions",
                "version");
    }

    @Override
    protected boolean verifyVersion(int current, int alternative) {
        return true;
    }
}
+5 −0
Original line number Diff line number Diff line
@@ -25,4 +25,9 @@ public class LangIdInstallReceiver extends ConfigUpdateInstallReceiver {
            "metadata/lang_id",
            "version");
    }

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