diff options
author | PandaNinjas <admin@malwarefight.wip.la> | 2023-06-07 18:12:46 -0400 |
---|---|---|
committer | PandaNinjas <admin@malwarefight.wip.la> | 2023-06-07 18:14:05 -0400 |
commit | 5d425ecc025aa1fc4a5292961a5ff1b18a108885 (patch) | |
tree | 04604feda3e56632ba7eb14c55d068d7ec13c528 | |
parent | c225ecbb557b656184f35fdd3daa3a8aaa048f1f (diff) | |
download | PrismLauncher-5d425ecc025aa1fc4a5292961a5ff1b18a108885.tar.gz PrismLauncher-5d425ecc025aa1fc4a5292961a5ff1b18a108885.tar.bz2 PrismLauncher-5d425ecc025aa1fc4a5292961a5ff1b18a108885.zip |
Fix the AccountList code
Signed-off-by: PandaNinjas <admin@malwarefight.wip.la>
-rw-r--r-- | launcher/minecraft/auth/AccountList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/minecraft/auth/AccountList.cpp b/launcher/minecraft/auth/AccountList.cpp index 9069db6e..e454bcc4 100644 --- a/launcher/minecraft/auth/AccountList.cpp +++ b/launcher/minecraft/auth/AccountList.cpp @@ -328,7 +328,7 @@ QVariant AccountList::data(const QModelIndex &index, int role) const case AccountState::Gone: { return tr("Gone", "Account status"); } - case default: { + default: { return tr("Unknown", "Account status"); } } |