mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-09 06:17:58 +00:00
Fix HTTP redirect issue that would cause the torrent addition to show up for automated RSS downloads (Closes #677565)
This commit is contained in:
parent
e15ac643de
commit
5fc3aa17b9
@ -52,7 +52,7 @@ downloadThread::downloadThread(QObject* parent) : QObject(parent) {
|
||||
}
|
||||
|
||||
void downloadThread::processDlFinished(QNetworkReply* reply) {
|
||||
QString url = reply->url().toEncoded().data();
|
||||
QString url = reply->url().toString();
|
||||
qDebug("Download finished: %s", qPrintable(url));
|
||||
if(reply->error() != QNetworkReply::NoError) {
|
||||
// Failure
|
||||
|
Loading…
Reference in New Issue
Block a user