diff options
author | Trial97 <alexandru.tripon97@gmail.com> | 2023-06-23 14:38:23 +0300 |
---|---|---|
committer | Trial97 <alexandru.tripon97@gmail.com> | 2023-06-23 14:38:23 +0300 |
commit | 67db141203864123f65d93723e7eed43328b8d97 (patch) | |
tree | 7442c9bdb2bc452c97b00e0d984692d7823884b5 /launcher/modplatform/modrinth/ModrinthCheckUpdate.cpp | |
parent | b2ed2bf810eb32f96e143d235ba9c0931af3697b (diff) | |
download | PrismLauncher-67db141203864123f65d93723e7eed43328b8d97.tar.gz PrismLauncher-67db141203864123f65d93723e7eed43328b8d97.tar.bz2 PrismLauncher-67db141203864123f65d93723e7eed43328b8d97.zip |
Renamed getResults to resultsReady
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
Diffstat (limited to 'launcher/modplatform/modrinth/ModrinthCheckUpdate.cpp')
-rw-r--r-- | launcher/modplatform/modrinth/ModrinthCheckUpdate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/modplatform/modrinth/ModrinthCheckUpdate.cpp b/launcher/modplatform/modrinth/ModrinthCheckUpdate.cpp index 36002bad..a7c22832 100644 --- a/launcher/modplatform/modrinth/ModrinthCheckUpdate.cpp +++ b/launcher/modplatform/modrinth/ModrinthCheckUpdate.cpp @@ -53,7 +53,7 @@ void ModrinthCheckUpdate::executeTask() // (though it will rarely happen, if at all) if (mod->metadata()->hash_format != best_hash_type) { auto hash_task = Hashing::createModrinthHasher(mod->fileinfo().absoluteFilePath()); - connect(hash_task.get(), &Hashing::Hasher::getResults, [&hashes, &mappings, mod](QString hash) { + connect(hash_task.get(), &Hashing::Hasher::resultsReady, [&hashes, &mappings, mod](QString hash) { hashes.append(hash); mappings.insert(hash, mod); }); |