diff options
author | Ezekiel Smith <ezekielsmith@protonmail.com> | 2022-07-03 01:50:36 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-03 01:50:36 +1000 |
commit | 7f22994f6889706ba667baca32968787fe86ad44 (patch) | |
tree | 7271bac27d2954c73c277a29baf94961d282b49a /launcher/minecraft/auth/steps/YggdrasilStep.cpp | |
parent | 7aba7b60641c74ead1f57c3ebe6a56c93dd4d5d1 (diff) | |
parent | 5da87d190464421b4dc50810aaf9619f1ef29d5a (diff) | |
download | PrismLauncher-7f22994f6889706ba667baca32968787fe86ad44.tar.gz PrismLauncher-7f22994f6889706ba667baca32968787fe86ad44.tar.bz2 PrismLauncher-7f22994f6889706ba667baca32968787fe86ad44.zip |
Merge pull request #831 from flowln/abort_connections
Add missing connections to the abort signal in some tasks
Diffstat (limited to 'launcher/minecraft/auth/steps/YggdrasilStep.cpp')
-rw-r--r-- | launcher/minecraft/auth/steps/YggdrasilStep.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/launcher/minecraft/auth/steps/YggdrasilStep.cpp b/launcher/minecraft/auth/steps/YggdrasilStep.cpp index 4c6b1624..e1d33172 100644 --- a/launcher/minecraft/auth/steps/YggdrasilStep.cpp +++ b/launcher/minecraft/auth/steps/YggdrasilStep.cpp @@ -9,6 +9,7 @@ YggdrasilStep::YggdrasilStep(AccountData* data, QString password) : AuthStep(dat connect(m_yggdrasil, &Task::failed, this, &YggdrasilStep::onAuthFailed); connect(m_yggdrasil, &Task::succeeded, this, &YggdrasilStep::onAuthSucceeded); + connect(m_yggdrasil, &Task::aborted, this, &YggdrasilStep::onAuthFailed); } YggdrasilStep::~YggdrasilStep() noexcept = default; |