mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
Merge pull request #16130 from Atlante45/fix/avatar-mixer-crash
BUGZ-1405: Add context object to timer connection
This commit is contained in:
commit
9e5f26cf4c
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ MixerAvatar::MixerAvatar() {
|
|||
_challengeTimer.setSingleShot(true);
|
||||
_challengeTimer.setInterval(CHALLENGE_TIMEOUT_MS);
|
||||
|
||||
_challengeTimer.callOnTimeout([this]() {
|
||||
_challengeTimer.callOnTimeout(this, [this]() {
|
||||
if (_verifyState == challengeClient) {
|
||||
_pendingEvent = false;
|
||||
_verifyState = verificationFailed;
|
||||
|
|
Loading…
Reference in a new issue