Only update account attributes if already registered
This commit is contained in:
parent
4acc9a96e3
commit
6bfcba4940
@ -250,13 +250,15 @@ public class Manager implements Closeable {
|
||||
Manager m = new Manager(account, pathConfig, serviceConfiguration, userAgent);
|
||||
|
||||
m.migrateLegacyConfigs();
|
||||
if (m.isRegistered()) {
|
||||
m.updateAccountAttributes();
|
||||
}
|
||||
|
||||
return m;
|
||||
}
|
||||
|
||||
private void migrateLegacyConfigs() {
|
||||
if (account.getProfileKey() == null) {
|
||||
if (account.getProfileKey() == null && isRegistered()) {
|
||||
// Old config file, creating new profile key
|
||||
account.setProfileKey(KeyUtils.createProfileKey());
|
||||
account.save();
|
||||
|
Loading…
x
Reference in New Issue
Block a user