From 171779009676024b9b84b906028ff42ca84b9ac5 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Sun, 27 Dec 2020 23:31:10 +0000 Subject: [PATCH] Don't call stopSync when destroying controller Connection does that internally already (cherry picked from commit 6a1fd3ff316bfd1a664fa95f47fea1be39651347) --- src/controller.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/controller.cpp b/src/controller.cpp index 190e8e531..b5cf4de0f 100644 --- a/src/controller.cpp +++ b/src/controller.cpp @@ -76,7 +76,6 @@ Controller::Controller(QObject *parent) Controller::~Controller() { for (auto c : qAsConst(m_connections)) { - c->stopSync(); c->saveState(); } }