mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-26 07:19:28 +00:00
fix(preferences): Fix the issue when signature is too long and preferences are not saved. Note that MySQL profile table should be updated with a migration script
This commit is contained in:
@@ -145,7 +145,8 @@
|
||||
defaults: this.preferences.defaults,
|
||||
account: account,
|
||||
accountId: index,
|
||||
mailCustomFromEnabled: $window.mailCustomFromEnabled
|
||||
mailCustomFromEnabled: $window.mailCustomFromEnabled,
|
||||
maxSize: this.preferences.defaults.CDefaultsSize
|
||||
}
|
||||
}).then(function() {
|
||||
// Automatically expand the new mail account
|
||||
@@ -173,7 +174,8 @@
|
||||
defaults: this.preferences.defaults,
|
||||
account: account,
|
||||
accountId: index,
|
||||
mailCustomFromEnabled: $window.mailCustomFromEnabled
|
||||
mailCustomFromEnabled: $window.mailCustomFromEnabled,
|
||||
maxSize: this.preferences.defaults.CDefaultsSize
|
||||
}
|
||||
}).then(function() {
|
||||
vm.preferences.defaults.AuxiliaryMailAccounts[index] = account.$omit();
|
||||
|
||||
Reference in New Issue
Block a user