diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-06-23 19:53:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-23 19:53:44 +0100 |
commit | 741c23a72ab2b34d8b1ddab93babd25d3ea1cc9e (patch) | |
tree | a319eef487ad3fc537ea0c4d99e0437a237ecb99 /launcher | |
parent | 046d510134a0061c0a1fa89fda80355c9e2f11ff (diff) | |
parent | 28de461067b0fec69ebcb9bdcd213d02244b39bb (diff) | |
download | PrismLauncher-741c23a72ab2b34d8b1ddab93babd25d3ea1cc9e.tar.gz PrismLauncher-741c23a72ab2b34d8b1ddab93babd25d3ea1cc9e.tar.bz2 PrismLauncher-741c23a72ab2b34d8b1ddab93babd25d3ea1cc9e.zip |
Merge pull request #1256 from Trial97/fix11
Fixed hashers
Diffstat (limited to 'launcher')
-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); } } |