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
This commit is contained in:
Tony Mak
2019-05-08 15:24:45 +01:00
parent 1b959cf219
commit e854f70446
2 changed files with 10 additions and 0 deletions

View File

@@ -25,4 +25,9 @@ public class ConversationActionsInstallReceiver extends ConfigUpdateInstallRecei
"metadata/actions_suggestions",
"version");
}
@Override
protected boolean verifyVersion(int current, int alternative) {
return true;
}
}

View File

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