Fixed non-matching setting keys #2503

This commit is contained in:
GoneUp 2017-04-26 22:13:11 +02:00
parent 777ca0bda4
commit 35a29ec456

View file

@ -285,10 +285,10 @@ public class GlobalSettings {
s.put("pgpSignOnlyDialogCounter", Settings.versions( s.put("pgpSignOnlyDialogCounter", Settings.versions(
new V(45, new IntegerRangeSetting(0, Integer.MAX_VALUE, 0)) 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)) 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)) new V(47, new BooleanSetting(false))
)); ));