mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-14 11:37:43 +00:00
Merge pull request #7799 from keymanapp/fix/android/updatekmp-logic
fix(android/engine): Fix logic error for updateKMP
This commit is contained in:
commit
8fbbf017e6
1 changed files with 1 additions and 1 deletions
|
|
@ -157,7 +157,7 @@ public class CloudDataJsonUtil {
|
|||
if (keyboardID.equalsIgnoreCase(kbd.getKeyboardID()) &&
|
||||
FileUtils.compareVersions(cloudVersion, version) == FileUtils.VERSION_GREATER &&
|
||||
updateKMP != null &&
|
||||
updateKMP.equalsIgnoreCase(cloudKMP)) {
|
||||
!updateKMP.equalsIgnoreCase(cloudKMP)) {
|
||||
// Update keyboard with the latest KMP link
|
||||
kbd.setUpdateKMP(cloudKMP);
|
||||
KeyboardController.getInstance().add(kbd);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue