summaryrefslogtreecommitdiff
path: root/src/core/frontend/applets
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-09-24 08:02:11 -0400
committerGitHub <noreply@github.com>2021-09-24 08:02:11 -0400
commitc8512839d78249a441a354a4072779c982fd4305 (patch)
tree7fa0f1fa088cc3c96903381967542317b5f914d7 /src/core/frontend/applets
parent4baef7905e88fae7a3486d24bf7a111ad4d30b8a (diff)
parent091e1411422c62ef358c8d3750a92735858b1a61 (diff)
Merge pull request #7069 from lioncash/uuid
common/uuid: Add validity checking functions to interface
Diffstat (limited to 'src/core/frontend/applets')
-rw-r--r--src/core/frontend/applets/profile_select.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/frontend/applets/profile_select.cpp b/src/core/frontend/applets/profile_select.cpp
index 4c58c310f..3e4f90be2 100644
--- a/src/core/frontend/applets/profile_select.cpp
+++ b/src/core/frontend/applets/profile_select.cpp
@@ -13,7 +13,8 @@ ProfileSelectApplet::~ProfileSelectApplet() = default;
void DefaultProfileSelectApplet::SelectProfile(
std::function<void(std::optional<Common::UUID>)> callback) const {
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{Common::INVALID_UUID}));
LOG_INFO(Service_ACC, "called, selecting current user instead of prompting...");
}