diff options
author | bunnei <bunneidev@gmail.com> | 2022-02-10 21:52:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-10 21:52:13 -0700 |
commit | ca9da569ce8d5ce8106ff69afce484d9516570a8 (patch) | |
tree | db8f98fcfcd3d3d77f77c52b3be696c073f90f6e /src/core/frontend | |
parent | 1105614b86450f64e04d0d409aa9d91883f3258c (diff) | |
parent | 3799c820ca7c5b978d47be9c5ac1318333e5d9cb (diff) |
Merge pull request #7852 from Morph1984/new-uuid
common: Revise and fix the UUID implementation
Diffstat (limited to 'src/core/frontend')
-rw-r--r-- | src/core/frontend/applets/profile_select.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/frontend/applets/profile_select.cpp b/src/core/frontend/applets/profile_select.cpp index 3e4f90be2..4c58c310f 100644 --- a/src/core/frontend/applets/profile_select.cpp +++ b/src/core/frontend/applets/profile_select.cpp @@ -13,8 +13,7 @@ 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{Common::INVALID_UUID})); + callback(manager.GetUser(Settings::values.current_user.GetValue()).value_or(Common::UUID{})); LOG_INFO(Service_ACC, "called, selecting current user instead of prompting..."); } |