mirror of
https://github.com/Team-Neptune/NSAInstaller.git
synced 2024-11-27 14:40:50 +00:00
Fix strings for net installs not being correct after copy-pasta-ing
This commit is contained in:
parent
38baa513c4
commit
cee9898a99
@ -143,9 +143,9 @@ namespace netInstStuff{
|
|||||||
printf("Failed to install");
|
printf("Failed to install");
|
||||||
printf("%s", e.what());
|
printf("%s", e.what());
|
||||||
fprintf(stdout, "%s", e.what());
|
fprintf(stdout, "%s", e.what());
|
||||||
inst::ui::setInstInfoText("Failed to install " + inst::util::shortenString(ourUrlList[urlItr].erase(0, 6), 42, true));
|
inst::ui::setInstInfoText("Failed to install " + inst::util::shortenString(inst::util::formatUrlString(ourUrlList[urlItr]), 42, true));
|
||||||
inst::ui::setInstBarPerc(0);
|
inst::ui::setInstBarPerc(0);
|
||||||
inst::ui::mainApp->CreateShowDialog("Failed to install " + inst::util::shortenString(ourUrlList[urlItr].erase(0, 6), 42, true) + "!", "Partially installed contents can be removed from the System Settings applet.\n\n" + (std::string)e.what(), {"OK"}, true);
|
inst::ui::mainApp->CreateShowDialog("Failed to install " + inst::util::shortenString(inst::util::formatUrlString(ourUrlList[urlItr]), 42, true) + "!", "Partially installed contents can be removed from the System Settings applet.\n\n" + (std::string)e.what(), {"OK"}, true);
|
||||||
nspInstalled = false;
|
nspInstalled = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user