From 37bea9105f1c7e0c8f1a209da3d5043c61abfb44 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Fri, 15 Jan 2021 18:16:30 +0100 Subject: [PATCH] - fixed a bug that lead to segmentation faults --- ScStwLibraries/sources/client/scstwremoterace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ScStwLibraries/sources/client/scstwremoterace.cpp b/ScStwLibraries/sources/client/scstwremoterace.cpp index 2347d50..53b3f54 100644 --- a/ScStwLibraries/sources/client/scstwremoterace.cpp +++ b/ScStwLibraries/sources/client/scstwremoterace.cpp @@ -130,7 +130,7 @@ void ScStwRemoteRace::handleClientStateChange() { break; case ScStwClient::DISCONNECTED: this->remoteTimers.clear(); - this->setTimers(this->localTimers, true); + this->setTimers(this->localTimers, false); emit this->timersChanged(); emit this->detailsChanged(); emit this->currentStartDelayChanged();