mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-23 08:48:07 -06:00
- Fixed eol problems on Windows
This commit is contained in:
1
TODO
1
TODO
@@ -58,3 +58,4 @@ rc10->rc11? changelog:
|
|||||||
- BUGFIX: Download from urls are now able to follow redirections
|
- BUGFIX: Download from urls are now able to follow redirections
|
||||||
- BUGFIX: Clean up for failed torrents downloaded from urls
|
- BUGFIX: Clean up for failed torrents downloaded from urls
|
||||||
- BUGFIX: Fixed downloads from URLs on Windows
|
- BUGFIX: Fixed downloads from URLs on Windows
|
||||||
|
- BUGFIX: Fixed search engine on Windows
|
||||||
|
|||||||
@@ -256,7 +256,7 @@ bool engineSelectDlg::checkInstalled(QString plugin_name) const {
|
|||||||
nova.waitForStarted();
|
nova.waitForStarted();
|
||||||
nova.waitForFinished();
|
nova.waitForFinished();
|
||||||
QByteArray result = nova.readAll();
|
QByteArray result = nova.readAll();
|
||||||
result = result.replace("\n\r", "");
|
result = result.replace("\r", "");
|
||||||
result = result.replace("\n", "");
|
result = result.replace("\n", "");
|
||||||
QList<QByteArray> plugins_list = result.split(',');
|
QList<QByteArray> plugins_list = result.split(',');
|
||||||
return plugins_list.contains(plugin_name.toUtf8());
|
return plugins_list.contains(plugin_name.toUtf8());
|
||||||
@@ -288,7 +288,7 @@ void engineSelectDlg::loadSupportedSearchEngines(bool first) {
|
|||||||
nova.waitForStarted();
|
nova.waitForStarted();
|
||||||
nova.waitForFinished();
|
nova.waitForFinished();
|
||||||
QByteArray result = nova.readAll();
|
QByteArray result = nova.readAll();
|
||||||
result = result.replace("\n\r", "");
|
result = result.replace("\r", "");
|
||||||
result = result.replace("\n", "");
|
result = result.replace("\n", "");
|
||||||
qDebug("read: %s", result.data());
|
qDebug("read: %s", result.data());
|
||||||
QByteArray e;
|
QByteArray e;
|
||||||
@@ -305,7 +305,7 @@ void engineSelectDlg::loadSupportedSearchEngines(bool first) {
|
|||||||
nova.waitForStarted();
|
nova.waitForStarted();
|
||||||
nova.waitForFinished();
|
nova.waitForFinished();
|
||||||
result = nova.readAll();
|
result = nova.readAll();
|
||||||
result = result.replace("\n\r", "");
|
result = result.replace("\r", "");
|
||||||
result = result.replace("\n", "");
|
result = result.replace("\n", "");
|
||||||
qDebug("read: %s", result.data());
|
qDebug("read: %s", result.data());
|
||||||
unsigned int i = 0;
|
unsigned int i = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user