1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-19 13:33:39 +01:00

small refactor

This commit is contained in:
flb 2022-03-30 22:25:05 +02:00
parent e056903326
commit 6874cc060f

View file

@ -178,7 +178,6 @@ void ListDownloadTab::createCheatSlipItem()
cheatslipsItem->getClickEvent()->subscribe([](brls::View* view) {
if (std::filesystem::exists(TOKEN_PATH)) {
brls::Application::pushView(new AppPage_CheatSlips());
return true;
}
else {
std::string usr, pwd;
@ -197,13 +196,12 @@ void ListDownloadTab::createCheatSlipItem()
tokenFile << token.dump();
tokenFile.close();
brls::Application::pushView(new AppPage_CheatSlips());
return true;
}
else {
util::showDialogBoxInfo("menus/cheats/cheatslips_wrong_id"_i18n + "\n" + "menus/cheats/kb_error"_i18n);
return true;
}
}
return true;
});
this->addView(cheatslipsItem);
}