diff options
author | Trial97 <alexandru.tripon97@gmail.com> | 2023-06-24 15:58:55 +0300 |
---|---|---|
committer | Trial97 <alexandru.tripon97@gmail.com> | 2023-06-24 15:58:55 +0300 |
commit | 7fdd68d7682ea32404c07337b610365bcf4c7083 (patch) | |
tree | 57355c6ba2fadb6673c34aee64c573435e91326e /launcher/modplatform/helpers | |
parent | 69c709b05a90f342cc9d1f9337457bb5519a87a9 (diff) | |
parent | df6d46de9e648284a788a327b87698d58a4fc145 (diff) | |
download | PrismLauncher-7fdd68d7682ea32404c07337b610365bcf4c7083.tar.gz PrismLauncher-7fdd68d7682ea32404c07337b610365bcf4c7083.tar.bz2 PrismLauncher-7fdd68d7682ea32404c07337b610365bcf4c7083.zip |
Merge branch 'develop' of https://github.com/PrismLauncher/PrismLauncher into develop
Diffstat (limited to 'launcher/modplatform/helpers')
-rw-r--r-- | launcher/modplatform/helpers/HashUtils.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/launcher/modplatform/helpers/HashUtils.cpp b/launcher/modplatform/helpers/HashUtils.cpp index 7d188a2f..6ff1d171 100644 --- a/launcher/modplatform/helpers/HashUtils.cpp +++ b/launcher/modplatform/helpers/HashUtils.cpp @@ -89,6 +89,7 @@ void FlameHasher::executeTask() emitFailed("Empty hash!"); } else { emitSucceeded(); + emit resultsReady(m_hash); } } @@ -120,6 +121,7 @@ void BlockedModHasher::executeTask() emitFailed("Empty hash!"); } else { emitSucceeded(); + emit resultsReady(m_hash); } } |