Fix importing multiple accounts
This commit is contained in:
parent
0e78b8aae6
commit
6721a15663
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ public class SettingsImporter {
|
|||
editor = preferences.createStorageEditor();
|
||||
|
||||
String newUuid = importResult.imported.uuid;
|
||||
String oldAccountUuids = storage.getString("accountUuids", "");
|
||||
String oldAccountUuids = preferences.getStorage().getString("accountUuids", "");
|
||||
String newAccountUuids = (oldAccountUuids.length() > 0) ?
|
||||
oldAccountUuids + "," + newUuid : newUuid;
|
||||
|
||||
|
|
Loading…
Reference in a new issue