From 35a29ec4560a031c6ada2849be987aee08108e60 Mon Sep 17 00:00:00 2001 From: GoneUp Date: Wed, 26 Apr 2017 22:13:11 +0200 Subject: [PATCH] Fixed non-matching setting keys #2503 --- .../src/main/java/com/fsck/k9/preferences/GlobalSettings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/k9mail/src/main/java/com/fsck/k9/preferences/GlobalSettings.java b/k9mail/src/main/java/com/fsck/k9/preferences/GlobalSettings.java index 14c77e63e..f1a799ed9 100644 --- a/k9mail/src/main/java/com/fsck/k9/preferences/GlobalSettings.java +++ b/k9mail/src/main/java/com/fsck/k9/preferences/GlobalSettings.java @@ -285,10 +285,10 @@ public class GlobalSettings { s.put("pgpSignOnlyDialogCounter", Settings.versions( new V(45, new IntegerRangeSetting(0, Integer.MAX_VALUE, 0)) )); - s.put("openpgpProvider", Settings.versions( + s.put("openPgpProvider", Settings.versions( new V(46, new StringSetting(K9.NO_OPENPGP_PROVIDER)) )); - s.put("openpgpSupportSignOnly", Settings.versions( + s.put("openPgpSupportSignOnly", Settings.versions( new V(47, new BooleanSetting(false)) ));