diff options
author | Gingeh <39150378+Gingeh@users.noreply.github.com> | 2022-06-29 18:42:01 +1000 |
---|---|---|
committer | Gingeh <39150378+Gingeh@users.noreply.github.com> | 2022-06-29 18:42:01 +1000 |
commit | 68d6ce60a9e74758743d2a43d9e4604fd06e6511 (patch) | |
tree | 30b412a22a9ffec2f7e6fa753371ac073789e002 | |
parent | 774ed044fcac9c444f41e0f93435089338e8366c (diff) | |
download | PrismLauncher-68d6ce60a9e74758743d2a43d9e4604fd06e6511.tar.gz PrismLauncher-68d6ce60a9e74758743d2a43d9e4604fd06e6511.tar.bz2 PrismLauncher-68d6ce60a9e74758743d2a43d9e4604fd06e6511.zip |
Don't show account name for offline accounts
-rw-r--r-- | launcher/minecraft/auth/AccountData.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/minecraft/auth/AccountData.cpp b/launcher/minecraft/auth/AccountData.cpp index dd9c3f8f..f6468ba7 100644 --- a/launcher/minecraft/auth/AccountData.cpp +++ b/launcher/minecraft/auth/AccountData.cpp @@ -473,7 +473,7 @@ QString AccountData::accountDisplayString() const { return userName(); } case AccountType::Offline: { - return userName(); + return "<Offline>"; } case AccountType::MSA: { if(xboxApiToken.extra.contains("gtg")) { |