From 6a1fd3ff316bfd1a664fa95f47fea1be39651347 Mon Sep 17 00:00:00 2001 From: Nicolas Fella Date: Mon, 28 Dec 2020 00:31:10 +0100 Subject: [PATCH] Don't call stopSync when destroying controller Connection does that internally already --- src/controller.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/controller.cpp b/src/controller.cpp index 07ee5cde2..bf191e2d0 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(); } }