Added missing account setting "alwaysBcc" to import/export table
This commit is contained in:
parent
bd6cdecdb0
commit
632dde614d
2 changed files with 4 additions and 1 deletions
|
@ -30,6 +30,9 @@ public class AccountSettings {
|
|||
* and use that for whatever you add here.
|
||||
*/
|
||||
|
||||
s.put("alwaysBcc", Settings.versions(
|
||||
new V(11, new StringSetting(""))
|
||||
));
|
||||
s.put("archiveFolderName", Settings.versions(
|
||||
new V(1, new StringSetting("Archive"))
|
||||
));
|
||||
|
|
|
@ -35,7 +35,7 @@ public class Settings {
|
|||
*
|
||||
* @see SettingsExporter
|
||||
*/
|
||||
public static final int VERSION = 10;
|
||||
public static final int VERSION = 11;
|
||||
|
||||
public static Map<String, Object> validate(int version, Map<String,
|
||||
TreeMap<Integer, SettingsDescription>> settings,
|
||||
|
|
Loading…
Reference in a new issue