diff --git a/launcher/src/accountmanager.cpp b/launcher/src/accountmanager.cpp index 7138819..17d6ec2 100644 --- a/launcher/src/accountmanager.cpp +++ b/launcher/src/accountmanager.cpp @@ -61,6 +61,7 @@ Account *AccountManager::createSquareEnixAccount(const QString &username, const account->config()->setLicense(static_cast(licenseType)); account->config()->setIsFreeTrial(isFreeTrial); account->config()->setName(username); + account->config()->save(); insertAccount(account); diff --git a/launcher/src/profilemanager.cpp b/launcher/src/profilemanager.cpp index fd331fe..8d3ba82 100644 --- a/launcher/src/profilemanager.cpp +++ b/launcher/src/profilemanager.cpp @@ -45,6 +45,7 @@ Profile *ProfileManager::addProfile() { const auto newProfile = new Profile(QUuid::createUuid().toString(), this); newProfile->config()->setName(QStringLiteral("New Profile")); + newProfile->config()->save(); insertProfile(newProfile);