Merge pull request #2521 from GoneUp/settings_fix

Fixed import/export of crypto settings
This commit is contained in:
cketti 2017-05-02 04:21:44 +02:00 committed by GitHub
commit 754837d5ef

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))
)); ));