diff --git a/TODO b/TODO index 1be2e22ad..184c79ea7 100644 --- a/TODO +++ b/TODO @@ -79,6 +79,7 @@ LANGUAGES UPDATED: - Bulgarian *OK* rc1->rc2 changelog: +- BUGFIX: Fixed search engine plugins update - BUGFIX: Fixed mininova search engine plugin - BUGFIX: Fixed infoBar text when adding a torrent - BUGFIX: Fixed a unsupported character in man page diff --git a/src/engineSelectDlg.cpp b/src/engineSelectDlg.cpp index 465ed8878..cbe57c1ac 100644 --- a/src/engineSelectDlg.cpp +++ b/src/engineSelectDlg.cpp @@ -650,8 +650,8 @@ void engineSelectDlg::processDownloadedFile(QString url, QString filePath) { } if(url.endsWith(".pyqBT", Qt::CaseInsensitive) || url.endsWith(".py", Qt::CaseInsensitive)) { QString plugin_name = url.split('/').last(); - plugin_name.replace(".py", ""); plugin_name.replace(".pyqBT", ""); + plugin_name.replace(".py", ""); installPlugin(filePath, plugin_name); QFile::remove(filePath); return;