Fixed: Plugin downloader freezes if no plugins #4168

This commit is contained in:
Nick Bolton 2015-02-25 08:17:16 +00:00
parent a30a685ed2
commit c300b65662
1 changed files with 1 additions and 1 deletions

View File

@ -112,8 +112,8 @@ void WebClient::queryPluginList()
if (editionRegex.exactMatch(responseJson)) { if (editionRegex.exactMatch(responseJson)) {
QString e = editionRegex.cap(1); QString e = editionRegex.cap(1);
m_PluginList = e.split(","); m_PluginList = e.split(",");
emit queryPluginDone();
} }
emit queryPluginDone();
return; return;
} }
else if (boolString == "false") { else if (boolString == "false") {