From c300b656627155a8fb13ced2d9dd998ab8defe08 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Wed, 25 Feb 2015 08:17:16 +0000 Subject: [PATCH] Fixed: Plugin downloader freezes if no plugins #4168 --- src/gui/src/WebClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/src/WebClient.cpp b/src/gui/src/WebClient.cpp index 2455e21a..e7325e28 100644 --- a/src/gui/src/WebClient.cpp +++ b/src/gui/src/WebClient.cpp @@ -112,8 +112,8 @@ void WebClient::queryPluginList() if (editionRegex.exactMatch(responseJson)) { QString e = editionRegex.cap(1); m_PluginList = e.split(","); - emit queryPluginDone(); } + emit queryPluginDone(); return; } else if (boolString == "false") {