|
|
@ -9,8 +9,7 @@ namespace Core::Frontend { |
|
|
|
|
|
|
|
|
ProfileSelectApplet::~ProfileSelectApplet() = default; |
|
|
ProfileSelectApplet::~ProfileSelectApplet() = default; |
|
|
|
|
|
|
|
|
void DefaultProfileSelectApplet::SelectProfile( |
|
|
|
|
|
std::function<void(std::optional<Common::UUID>)> callback) const { |
|
|
|
|
|
|
|
|
void DefaultProfileSelectApplet::SelectProfile(SelectProfileCallback callback) const { |
|
|
Service::Account::ProfileManager manager; |
|
|
Service::Account::ProfileManager manager; |
|
|
callback(manager.GetUser(Settings::values.current_user.GetValue()).value_or(Common::UUID{})); |
|
|
callback(manager.GetUser(Settings::values.current_user.GetValue()).value_or(Common::UUID{})); |
|
|
LOG_INFO(Service_ACC, "called, selecting current user instead of prompting..."); |
|
|
LOG_INFO(Service_ACC, "called, selecting current user instead of prompting..."); |
|
|
|