Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 105322b3 authored by cketti's avatar cketti Committed by GitHub
Browse files

Merge pull request #6001 from k9mail/fix_settings_import

Fix importing multiple accounts
parents 0e78b8aa 6721a156
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;