aboutsummaryrefslogtreecommitdiff
path: root/launcher/modplatform/modrinth/ModrinthPackExportTask.cpp
diff options
context:
space:
mode:
authorTrial97 <alexandru.tripon97@gmail.com>2023-07-02 18:50:29 +0300
committerTrial97 <alexandru.tripon97@gmail.com>2023-07-02 18:50:29 +0300
commit5f63c781b400aab29298b1eb2822477e35d87c01 (patch)
tree12d946ab1cd530ccedf6bee84036ee5c1e56620f /launcher/modplatform/modrinth/ModrinthPackExportTask.cpp
parentaad5ca5474ff015da30809260fe0f9d6cb503d61 (diff)
downloadPrismLauncher-5f63c781b400aab29298b1eb2822477e35d87c01.tar.gz
PrismLauncher-5f63c781b400aab29298b1eb2822477e35d87c01.tar.bz2
PrismLauncher-5f63c781b400aab29298b1eb2822477e35d87c01.zip
resolved local vaiables names
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
Diffstat (limited to 'launcher/modplatform/modrinth/ModrinthPackExportTask.cpp')
-rw-r--r--launcher/modplatform/modrinth/ModrinthPackExportTask.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/modplatform/modrinth/ModrinthPackExportTask.cpp b/launcher/modplatform/modrinth/ModrinthPackExportTask.cpp
index a9a1f1c4..c8206f1e 100644
--- a/launcher/modplatform/modrinth/ModrinthPackExportTask.cpp
+++ b/launcher/modplatform/modrinth/ModrinthPackExportTask.cpp
@@ -95,7 +95,7 @@ void ModrinthPackExportTask::collectFiles()
void ModrinthPackExportTask::collectHashes()
{
- setStatus(tr("Find file hashes..."));
+ setStatus(tr("Finding file hashes..."));
for (const QFileInfo& file : files) {
QCoreApplication::processEvents();
@@ -159,7 +159,7 @@ void ModrinthPackExportTask::makeApiRequest()
if (pendingHashes.isEmpty())
buildZip();
else {
- setStatus(tr("Find versions for hashes..."));
+ setStatus(tr("Finding versions for hashes..."));
auto response = std::make_shared<QByteArray>();
task = api.currentVersions(pendingHashes.values(), "sha512", response);
connect(task.get(), &NetJob::succeeded, [this, response]() { parseApiResponse(response); });