mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-21 16:07:23 -06:00
Remove possible double check of the same thing.
This commit is contained in:
@@ -623,18 +623,13 @@ void SearchEngine::parseVersionInfo(const QByteArray &info)
|
|||||||
if (!pluginName.endsWith(":")) continue;
|
if (!pluginName.endsWith(":")) continue;
|
||||||
|
|
||||||
pluginName.chop(1); // remove trailing ':'
|
pluginName.chop(1); // remove trailing ':'
|
||||||
bool ok;
|
|
||||||
qreal versionParseTest = list.last().toFloat(&ok);
|
|
||||||
qDebug("read line %s: %.2f", qPrintable(pluginName), versionParseTest);
|
|
||||||
if (!ok) continue;
|
|
||||||
|
|
||||||
PluginVersion version = PluginVersion::tryParse(list.last(), {});
|
PluginVersion version = PluginVersion::tryParse(list.last(), {});
|
||||||
if (version != PluginVersion()) {
|
if (version == PluginVersion()) continue;
|
||||||
dataCorrect = true;
|
|
||||||
if (isUpdateNeeded(pluginName, version)) {
|
dataCorrect = true;
|
||||||
qDebug("Plugin: %s is outdated", qPrintable(pluginName));
|
if (isUpdateNeeded(pluginName, version)) {
|
||||||
updateInfo[pluginName] = version;
|
qDebug("Plugin: %s is outdated", qPrintable(pluginName));
|
||||||
}
|
updateInfo[pluginName] = version;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user